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 "*"