├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── example.py ├── setup.cfg ├── setup.py ├── tests └── test_xbmcjson.py ├── tox.ini ├── version.py └── xbmcjson ├── __init__.py └── xbmcjson.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcsaaddupuy/python-xbmc/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcsaaddupuy/python-xbmc/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcsaaddupuy/python-xbmc/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcsaaddupuy/python-xbmc/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcsaaddupuy/python-xbmc/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcsaaddupuy/python-xbmc/HEAD/README.md -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcsaaddupuy/python-xbmc/HEAD/example.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcsaaddupuy/python-xbmc/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcsaaddupuy/python-xbmc/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_xbmcjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcsaaddupuy/python-xbmc/HEAD/tests/test_xbmcjson.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcsaaddupuy/python-xbmc/HEAD/tox.ini -------------------------------------------------------------------------------- /version.py: -------------------------------------------------------------------------------- 1 | VERSION = "0.3.2" 2 | -------------------------------------------------------------------------------- /xbmcjson/__init__.py: -------------------------------------------------------------------------------- 1 | from .xbmcjson import * # NOQA 2 | -------------------------------------------------------------------------------- /xbmcjson/xbmcjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcsaaddupuy/python-xbmc/HEAD/xbmcjson/xbmcjson.py --------------------------------------------------------------------------------