soundsgood

Cos I don't think https://docs.python.org/3/tutorial/modules.html#packages is at all sound...


License
Unlicense
Install
pip install soundsgood==0.0.1

Documentation

soundsgood

Cos I don't think https://docs.python.org/3/tutorial/modules.html#packages is at all sound...

Python Packaging Pandora

I couldn't get my nested module -> submodule -> *.py packaging working?

After quite a painful hours of Google + Stackoverflowing, the results point to:

Although the last link in the bullet above looks "sound", I've tried an hour worth of variation of how to write the __init__.py files and I'm giving up so I made this repo to replicate the tutorial and hopefully document what really should be in the ___init__.py files from the https://docs.python.org/3/tutorial/modules.html#packages tutorial given the following file structure:

soundsgood/                     Top-level package
      __init__.py               Initialize the sound package
      formats/                  Subpackage for file format conversions
              __init__.py
              wavread.py
              wavwrite.py
              aiffread.py
              aiffwrite.py
              auread.py
              auwrite.py
              ...
      effects/                  Subpackage for sound effects
              __init__.py
              echo.py
              surround.py
              reverse.py
              ...
      filters/                  Subpackage for filters
              __init__.py
              equalizer.py
              vocoder.py
              karaoke.py
              ...