├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── crepe ├── __init__.py ├── __main__.py ├── cli.py ├── core.py └── version.py ├── requirements.txt ├── setup.py └── tests ├── sweep.wav └── test_sweep.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/crepe/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/crepe/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/crepe/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/crepe/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/crepe/HEAD/README.md -------------------------------------------------------------------------------- /crepe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/crepe/HEAD/crepe/__init__.py -------------------------------------------------------------------------------- /crepe/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/crepe/HEAD/crepe/__main__.py -------------------------------------------------------------------------------- /crepe/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/crepe/HEAD/crepe/cli.py -------------------------------------------------------------------------------- /crepe/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/crepe/HEAD/crepe/core.py -------------------------------------------------------------------------------- /crepe/version.py: -------------------------------------------------------------------------------- 1 | version = '0.0.16' 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/crepe/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/crepe/HEAD/setup.py -------------------------------------------------------------------------------- /tests/sweep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/crepe/HEAD/tests/sweep.wav -------------------------------------------------------------------------------- /tests/test_sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/crepe/HEAD/tests/test_sweep.py --------------------------------------------------------------------------------