├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── dataserv ├── Farmer.py ├── Validator.py ├── __init__.py ├── app.py ├── config.py ├── migrations │ ├── README │ ├── alembic.ini │ ├── empty │ ├── env.py │ ├── script.py.mako │ └── versions │ │ └── 14d4ac0f0f1_.py ├── run.py └── version.py ├── develop_requirements.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── test_requirements.txt └── tests ├── __init__.py ├── fixtures.json ├── test_App.py ├── test_Farmer.py └── test_Validator.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/dataserv/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/dataserv/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/dataserv/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/dataserv/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/dataserv/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/dataserv/HEAD/README.rst -------------------------------------------------------------------------------- /dataserv/Farmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/dataserv/HEAD/dataserv/Farmer.py -------------------------------------------------------------------------------- /dataserv/Validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/dataserv/HEAD/dataserv/Validator.py -------------------------------------------------------------------------------- /dataserv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/dataserv/HEAD/dataserv/__init__.py -------------------------------------------------------------------------------- /dataserv/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/dataserv/HEAD/dataserv/app.py -------------------------------------------------------------------------------- /dataserv/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/dataserv/HEAD/dataserv/config.py -------------------------------------------------------------------------------- /dataserv/migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /dataserv/migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/dataserv/HEAD/dataserv/migrations/alembic.ini -------------------------------------------------------------------------------- /dataserv/migrations/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataserv/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/dataserv/HEAD/dataserv/migrations/env.py -------------------------------------------------------------------------------- /dataserv/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/dataserv/HEAD/dataserv/migrations/script.py.mako -------------------------------------------------------------------------------- /dataserv/migrations/versions/14d4ac0f0f1_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/dataserv/HEAD/dataserv/migrations/versions/14d4ac0f0f1_.py -------------------------------------------------------------------------------- /dataserv/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/dataserv/HEAD/dataserv/run.py -------------------------------------------------------------------------------- /dataserv/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/dataserv/HEAD/dataserv/version.py -------------------------------------------------------------------------------- /develop_requirements.txt: -------------------------------------------------------------------------------- 1 | ipython 2 | pudb 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/dataserv/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/dataserv/HEAD/setup.py -------------------------------------------------------------------------------- /test_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/dataserv/HEAD/test_requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'super3' 2 | -------------------------------------------------------------------------------- /tests/fixtures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/dataserv/HEAD/tests/fixtures.json -------------------------------------------------------------------------------- /tests/test_App.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/dataserv/HEAD/tests/test_App.py -------------------------------------------------------------------------------- /tests/test_Farmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/dataserv/HEAD/tests/test_Farmer.py -------------------------------------------------------------------------------- /tests/test_Validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/dataserv/HEAD/tests/test_Validator.py --------------------------------------------------------------------------------