How to write a custom solution using a python package, modules etc
- by morpheous
I am writing a packacge foobar which consists of the modules alice, bob, charles and david.
From my understanding of Python packages and modules, this means I will create a folder foobar, with the following subdirectories and files (please correct if I am wrong)
foobar/
__init__.py
alice/alice.py
bob/bob.py
charles/charles.py
…