├── .github └── workflows │ ├── main.yml │ └── publish.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── Makefile ├── README.md ├── demo ├── db.sqlite3 ├── demo │ ├── .env │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py └── requirements.txt ├── images └── pydjantic.png ├── poetry.lock ├── pydjantic ├── __init__.py ├── py.typed └── pydjantic.py ├── pyproject.toml └── tests ├── __init__.py ├── test_db_config.py └── test_to_django.py /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erhosen-libs/pydjantic/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erhosen-libs/pydjantic/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erhosen-libs/pydjantic/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erhosen-libs/pydjantic/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erhosen-libs/pydjantic/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erhosen-libs/pydjantic/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erhosen-libs/pydjantic/HEAD/README.md -------------------------------------------------------------------------------- /demo/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erhosen-libs/pydjantic/HEAD/demo/db.sqlite3 -------------------------------------------------------------------------------- /demo/demo/.env: -------------------------------------------------------------------------------- 1 | DEBUG=True 2 | DJANGO_SECRET_KEY='p-thg1auj8vm*x)3#6hs!2ti=1cmyt1i*@ogwt#aw$9jrss(88' 3 | -------------------------------------------------------------------------------- /demo/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/demo/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erhosen-libs/pydjantic/HEAD/demo/demo/asgi.py -------------------------------------------------------------------------------- /demo/demo/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erhosen-libs/pydjantic/HEAD/demo/demo/settings.py -------------------------------------------------------------------------------- /demo/demo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erhosen-libs/pydjantic/HEAD/demo/demo/urls.py -------------------------------------------------------------------------------- /demo/demo/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erhosen-libs/pydjantic/HEAD/demo/demo/wsgi.py -------------------------------------------------------------------------------- /demo/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erhosen-libs/pydjantic/HEAD/demo/manage.py -------------------------------------------------------------------------------- /demo/requirements.txt: -------------------------------------------------------------------------------- 1 | Django 2 | pydjantic 3 | -------------------------------------------------------------------------------- /images/pydjantic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erhosen-libs/pydjantic/HEAD/images/pydjantic.png -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erhosen-libs/pydjantic/HEAD/poetry.lock -------------------------------------------------------------------------------- /pydjantic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erhosen-libs/pydjantic/HEAD/pydjantic/__init__.py -------------------------------------------------------------------------------- /pydjantic/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pydjantic/pydjantic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erhosen-libs/pydjantic/HEAD/pydjantic/pydjantic.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erhosen-libs/pydjantic/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_db_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erhosen-libs/pydjantic/HEAD/tests/test_db_config.py -------------------------------------------------------------------------------- /tests/test_to_django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erhosen-libs/pydjantic/HEAD/tests/test_to_django.py --------------------------------------------------------------------------------