├── .editorconfig ├── .gitignore ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Makefile ├── authors.rst ├── conf.py ├── contributing.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── modules.rst ├── readme.rst ├── tomita.core.rst ├── tomita.legacy.rst ├── tomita.rst └── usage.rst ├── setup.cfg ├── setup.py ├── tests ├── __init__.py └── test_tomita.py ├── tomita ├── __init__.py ├── cli.py ├── core │ └── __init__.py ├── legacy │ ├── __init__.py │ ├── demosongs.py │ ├── menv.py │ ├── mixfiles.py │ ├── mkfreq.py │ ├── nokiacomposer2wav.py │ ├── play_wav.py │ ├── pysynth.py │ ├── pysynth_b.py │ ├── pysynth_beeper.py │ ├── pysynth_c.py │ ├── pysynth_d.py │ ├── pysynth_e.py │ ├── pysynth_p.py │ ├── pysynth_s.py │ ├── pysynth_samp.py │ ├── read_abc.py │ ├── readmidi.py │ ├── setup.py │ └── test_nokiacomposer2wav.py └── tomita.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/tomita.core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/docs/tomita.core.rst -------------------------------------------------------------------------------- /docs/tomita.legacy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/docs/tomita.legacy.rst -------------------------------------------------------------------------------- /docs/tomita.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/docs/tomita.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Unit test package for tomita.""" 2 | -------------------------------------------------------------------------------- /tests/test_tomita.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/tests/test_tomita.py -------------------------------------------------------------------------------- /tomita/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/tomita/__init__.py -------------------------------------------------------------------------------- /tomita/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/tomita/cli.py -------------------------------------------------------------------------------- /tomita/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tomita/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tomita/legacy/demosongs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/tomita/legacy/demosongs.py -------------------------------------------------------------------------------- /tomita/legacy/menv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/tomita/legacy/menv.py -------------------------------------------------------------------------------- /tomita/legacy/mixfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/tomita/legacy/mixfiles.py -------------------------------------------------------------------------------- /tomita/legacy/mkfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/tomita/legacy/mkfreq.py -------------------------------------------------------------------------------- /tomita/legacy/nokiacomposer2wav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/tomita/legacy/nokiacomposer2wav.py -------------------------------------------------------------------------------- /tomita/legacy/play_wav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/tomita/legacy/play_wav.py -------------------------------------------------------------------------------- /tomita/legacy/pysynth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/tomita/legacy/pysynth.py -------------------------------------------------------------------------------- /tomita/legacy/pysynth_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/tomita/legacy/pysynth_b.py -------------------------------------------------------------------------------- /tomita/legacy/pysynth_beeper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/tomita/legacy/pysynth_beeper.py -------------------------------------------------------------------------------- /tomita/legacy/pysynth_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/tomita/legacy/pysynth_c.py -------------------------------------------------------------------------------- /tomita/legacy/pysynth_d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/tomita/legacy/pysynth_d.py -------------------------------------------------------------------------------- /tomita/legacy/pysynth_e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/tomita/legacy/pysynth_e.py -------------------------------------------------------------------------------- /tomita/legacy/pysynth_p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/tomita/legacy/pysynth_p.py -------------------------------------------------------------------------------- /tomita/legacy/pysynth_s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/tomita/legacy/pysynth_s.py -------------------------------------------------------------------------------- /tomita/legacy/pysynth_samp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/tomita/legacy/pysynth_samp.py -------------------------------------------------------------------------------- /tomita/legacy/read_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/tomita/legacy/read_abc.py -------------------------------------------------------------------------------- /tomita/legacy/readmidi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/tomita/legacy/readmidi.py -------------------------------------------------------------------------------- /tomita/legacy/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/tomita/legacy/setup.py -------------------------------------------------------------------------------- /tomita/legacy/test_nokiacomposer2wav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/tomita/legacy/test_nokiacomposer2wav.py -------------------------------------------------------------------------------- /tomita/tomita.py: -------------------------------------------------------------------------------- 1 | """Main module.""" 2 | -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g4brielvs/python-tomita/HEAD/tox.ini --------------------------------------------------------------------------------