pip install OtoPy.
pip install --upgrade OtoPy.
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
from Otopy.UsefulTools import OLoggerin 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 "*"