├── .coveralls.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── datatables └── __init__.py ├── readme.rst ├── setup.py ├── tests ├── __init__.py ├── models.py └── test_basic.py └── travis_requirements.txt /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: trDaz6JVs4lTsjkVGDZiWXoNn76tkBvok -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/datatables/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/datatables/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/datatables/HEAD/LICENSE -------------------------------------------------------------------------------- /datatables/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/datatables/HEAD/datatables/__init__.py -------------------------------------------------------------------------------- /readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/datatables/HEAD/readme.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/datatables/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'tom' 2 | -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/datatables/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/datatables/HEAD/tests/test_basic.py -------------------------------------------------------------------------------- /travis_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/datatables/HEAD/travis_requirements.txt --------------------------------------------------------------------------------