├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── README.md ├── README.rst ├── asset └── menduo_kdniao_py.png ├── bin ├── __init__.py └── kdniao ├── docs ├── README.md ├── README.rst ├── index.rst └── requirements.txt ├── examples └── tornado_handler.py ├── index.rst ├── kdniao ├── __init__.py ├── api.py ├── client.py ├── client_aio.py ├── conf.py └── mdutils.py ├── makefile ├── requirements.txt ├── setup.py └── test ├── test_client.py ├── test_recognise.py ├── test_track.py └── test_users.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduo/kdniao_python/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduo/kdniao_python/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # v0.1-beta-2017-03-05 2 | init -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduo/kdniao_python/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduo/kdniao_python/HEAD/README.rst -------------------------------------------------------------------------------- /asset/menduo_kdniao_py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduo/kdniao_python/HEAD/asset/menduo_kdniao_py.png -------------------------------------------------------------------------------- /bin/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding=utf-8 3 | 4 | -------------------------------------------------------------------------------- /bin/kdniao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduo/kdniao_python/HEAD/bin/kdniao -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduo/kdniao_python/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduo/kdniao_python/HEAD/docs/README.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduo/kdniao_python/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | tornado>=4.0.2 3 | kdniao 4 | -------------------------------------------------------------------------------- /examples/tornado_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduo/kdniao_python/HEAD/examples/tornado_handler.py -------------------------------------------------------------------------------- /index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduo/kdniao_python/HEAD/index.rst -------------------------------------------------------------------------------- /kdniao/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduo/kdniao_python/HEAD/kdniao/__init__.py -------------------------------------------------------------------------------- /kdniao/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduo/kdniao_python/HEAD/kdniao/api.py -------------------------------------------------------------------------------- /kdniao/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduo/kdniao_python/HEAD/kdniao/client.py -------------------------------------------------------------------------------- /kdniao/client_aio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduo/kdniao_python/HEAD/kdniao/client_aio.py -------------------------------------------------------------------------------- /kdniao/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduo/kdniao_python/HEAD/kdniao/conf.py -------------------------------------------------------------------------------- /kdniao/mdutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduo/kdniao_python/HEAD/kdniao/mdutils.py -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduo/kdniao_python/HEAD/makefile -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | tornado>=4.0.2 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menduo/kdniao_python/HEAD/setup.py -------------------------------------------------------------------------------- /test/test_client.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding=utf-8 3 | -------------------------------------------------------------------------------- /test/test_recognise.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding=utf-8 3 | 4 | -------------------------------------------------------------------------------- /test/test_track.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding=utf-8 3 | 4 | -------------------------------------------------------------------------------- /test/test_users.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding=utf-8 3 | 4 | --------------------------------------------------------------------------------