├── .gitignore ├── LICENSE ├── README.md ├── inertia ├── __init__.py ├── share.py ├── version.py └── views.py ├── setup.py └── upload.sh /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | build/ 3 | dist/ 4 | .vscode/ 5 | inertia_django.egg-info/ 6 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbeckr/inertia-django/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbeckr/inertia-django/HEAD/README.md -------------------------------------------------------------------------------- /inertia/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbeckr/inertia-django/HEAD/inertia/__init__.py -------------------------------------------------------------------------------- /inertia/share.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbeckr/inertia-django/HEAD/inertia/share.py -------------------------------------------------------------------------------- /inertia/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbeckr/inertia-django/HEAD/inertia/version.py -------------------------------------------------------------------------------- /inertia/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbeckr/inertia-django/HEAD/inertia/views.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbeckr/inertia-django/HEAD/setup.py -------------------------------------------------------------------------------- /upload.sh: -------------------------------------------------------------------------------- 1 | python3 -m twine upload dist/* --------------------------------------------------------------------------------