A Otoma Systems developed Lib Containing useful Tools and More


Keywords
python-library, python-package
License
BSD-2-Clause
Install
pip install OtoPy==1.7.0

Documentation

PyPI PyPI - Status PyPI - Format PyPI - Downloads GitHub release (latest by date) Build and Deploy on Release

OtoPy

Contents


Installation

New Instalation:

pip install OtoPy.

Update Package:

pip install --upgrade OtoPy.

Importing

Importing specific file from package:

from Otopy import UsefulTools 

in this exemple, the UsefulTools file was entirely imported. For this method of importing the class/function has to be used with the name of the file plus a "." as prefix, like: UsefulTools.OLogger

Importing specific function/class from package:

from Otopy.UsefulTools import OLogger

in this exemple, only the OLogger class from UsefulTools file was imported. For importing multiples classes/functions separate names with comma. For importing all classes/functions from the selected file use "*"


GitHub followers