├── .gitignore ├── README.md ├── assets ├── bookrest.gif └── bookrest.jpg ├── bookrest ├── __init__.py ├── admin.py ├── apps.py ├── introspect.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py ├── urls.py ├── utils.py └── views.py ├── example ├── data │ └── sample.sqlite3 ├── db.sqlite3 ├── django_bookrest │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── manage.py ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | dist/ 3 | build/ 4 | *.egg-info 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/bookrest/HEAD/README.md -------------------------------------------------------------------------------- /assets/bookrest.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/bookrest/HEAD/assets/bookrest.gif -------------------------------------------------------------------------------- /assets/bookrest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/bookrest/HEAD/assets/bookrest.jpg -------------------------------------------------------------------------------- /bookrest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bookrest/admin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bookrest/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/bookrest/HEAD/bookrest/apps.py -------------------------------------------------------------------------------- /bookrest/introspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/bookrest/HEAD/bookrest/introspect.py -------------------------------------------------------------------------------- /bookrest/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bookrest/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bookrest/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bookrest/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/bookrest/HEAD/bookrest/urls.py -------------------------------------------------------------------------------- /bookrest/utils.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bookrest/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/bookrest/HEAD/bookrest/views.py -------------------------------------------------------------------------------- /example/data/sample.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/bookrest/HEAD/example/data/sample.sqlite3 -------------------------------------------------------------------------------- /example/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/bookrest/HEAD/example/db.sqlite3 -------------------------------------------------------------------------------- /example/django_bookrest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/django_bookrest/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/bookrest/HEAD/example/django_bookrest/settings.py -------------------------------------------------------------------------------- /example/django_bookrest/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/bookrest/HEAD/example/django_bookrest/urls.py -------------------------------------------------------------------------------- /example/django_bookrest/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/bookrest/HEAD/example/django_bookrest/wsgi.py -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/bookrest/HEAD/example/manage.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/bookrest/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length=120 3 | --------------------------------------------------------------------------------