├── .gitignore ├── MIT-LICENSE.txt ├── README.md ├── __init__.py ├── echonest.py ├── face_client ├── __init__.py ├── face_client.py └── multipart.py ├── pyechonest ├── __init__.py ├── artist.py ├── catalog.py ├── config.py ├── playlist.py ├── proxies.py ├── results.py ├── song.py ├── track.py └── util.py ├── simplejson ├── __init__.py ├── _speedups.c ├── decoder.py ├── encoder.py ├── scanner.py ├── tests │ ├── __init__.py │ ├── test_check_circular.py │ ├── test_decode.py │ ├── test_default.py │ ├── test_dump.py │ ├── test_encode_basestring_ascii.py │ ├── test_fail.py │ ├── test_float.py │ ├── test_indent.py │ ├── test_pass1.py │ ├── test_pass2.py │ ├── test_pass3.py │ ├── test_recursion.py │ ├── test_scanstring.py │ ├── test_separators.py │ └── test_unicode.py └── tool.py └── visage.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.pyo -------------------------------------------------------------------------------- /MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/MIT-LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /echonest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/echonest.py -------------------------------------------------------------------------------- /face_client/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = (1, 0, 'dev') -------------------------------------------------------------------------------- /face_client/face_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/face_client/face_client.py -------------------------------------------------------------------------------- /face_client/multipart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/face_client/multipart.py -------------------------------------------------------------------------------- /pyechonest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/pyechonest/__init__.py -------------------------------------------------------------------------------- /pyechonest/artist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/pyechonest/artist.py -------------------------------------------------------------------------------- /pyechonest/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/pyechonest/catalog.py -------------------------------------------------------------------------------- /pyechonest/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/pyechonest/config.py -------------------------------------------------------------------------------- /pyechonest/playlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/pyechonest/playlist.py -------------------------------------------------------------------------------- /pyechonest/proxies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/pyechonest/proxies.py -------------------------------------------------------------------------------- /pyechonest/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/pyechonest/results.py -------------------------------------------------------------------------------- /pyechonest/song.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/pyechonest/song.py -------------------------------------------------------------------------------- /pyechonest/track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/pyechonest/track.py -------------------------------------------------------------------------------- /pyechonest/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/pyechonest/util.py -------------------------------------------------------------------------------- /simplejson/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/simplejson/__init__.py -------------------------------------------------------------------------------- /simplejson/_speedups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/simplejson/_speedups.c -------------------------------------------------------------------------------- /simplejson/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/simplejson/decoder.py -------------------------------------------------------------------------------- /simplejson/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/simplejson/encoder.py -------------------------------------------------------------------------------- /simplejson/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/simplejson/scanner.py -------------------------------------------------------------------------------- /simplejson/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/simplejson/tests/__init__.py -------------------------------------------------------------------------------- /simplejson/tests/test_check_circular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/simplejson/tests/test_check_circular.py -------------------------------------------------------------------------------- /simplejson/tests/test_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/simplejson/tests/test_decode.py -------------------------------------------------------------------------------- /simplejson/tests/test_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/simplejson/tests/test_default.py -------------------------------------------------------------------------------- /simplejson/tests/test_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/simplejson/tests/test_dump.py -------------------------------------------------------------------------------- /simplejson/tests/test_encode_basestring_ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/simplejson/tests/test_encode_basestring_ascii.py -------------------------------------------------------------------------------- /simplejson/tests/test_fail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/simplejson/tests/test_fail.py -------------------------------------------------------------------------------- /simplejson/tests/test_float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/simplejson/tests/test_float.py -------------------------------------------------------------------------------- /simplejson/tests/test_indent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/simplejson/tests/test_indent.py -------------------------------------------------------------------------------- /simplejson/tests/test_pass1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/simplejson/tests/test_pass1.py -------------------------------------------------------------------------------- /simplejson/tests/test_pass2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/simplejson/tests/test_pass2.py -------------------------------------------------------------------------------- /simplejson/tests/test_pass3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/simplejson/tests/test_pass3.py -------------------------------------------------------------------------------- /simplejson/tests/test_recursion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/simplejson/tests/test_recursion.py -------------------------------------------------------------------------------- /simplejson/tests/test_scanstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/simplejson/tests/test_scanstring.py -------------------------------------------------------------------------------- /simplejson/tests/test_separators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/simplejson/tests/test_separators.py -------------------------------------------------------------------------------- /simplejson/tests/test_unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/simplejson/tests/test_unicode.py -------------------------------------------------------------------------------- /simplejson/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/simplejson/tool.py -------------------------------------------------------------------------------- /visage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleitz/automaticdj/HEAD/visage.py --------------------------------------------------------------------------------