├── .github └── FUNDING.yml ├── .gitignore ├── .python-version ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── README.md ├── pyproject.toml ├── ruff.toml ├── setup.py ├── src └── djapy │ ├── __init__.py │ ├── core │ ├── __init__.py │ ├── auth │ │ ├── __init__.py │ │ ├── auth.py │ │ └── dec.py │ ├── d_types.py │ ├── dec │ │ ├── __init__.py │ │ ├── async_dec.py │ │ ├── base_dec.py │ │ └── sync_dec.py │ ├── defaults.py │ ├── labels.py │ ├── mid.py │ ├── parser.py │ ├── response.py │ ├── type_check.py │ ├── typing_utils.py │ └── view_func.py │ ├── openapi │ ├── __init__.py │ ├── defaults.py │ ├── icons.py │ ├── info.py │ └── openapi_path.py │ ├── pagination │ ├── __init__.py │ ├── base_pagination.py │ ├── cursor_pagination.py │ ├── dec.py │ ├── offset_pagination.py │ └── page_number_pagination.py │ ├── py.typed │ ├── schema │ ├── __init__.py │ ├── handle.py │ ├── schema.py │ └── user.py │ └── templates │ └── djapy │ └── swagger_cdn.html └── uv.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/ruff.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/setup.py -------------------------------------------------------------------------------- /src/djapy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/__init__.py -------------------------------------------------------------------------------- /src/djapy/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/djapy/core/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/core/auth/__init__.py -------------------------------------------------------------------------------- /src/djapy/core/auth/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/core/auth/auth.py -------------------------------------------------------------------------------- /src/djapy/core/auth/dec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/core/auth/dec.py -------------------------------------------------------------------------------- /src/djapy/core/d_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/core/d_types.py -------------------------------------------------------------------------------- /src/djapy/core/dec/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/core/dec/__init__.py -------------------------------------------------------------------------------- /src/djapy/core/dec/async_dec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/core/dec/async_dec.py -------------------------------------------------------------------------------- /src/djapy/core/dec/base_dec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/core/dec/base_dec.py -------------------------------------------------------------------------------- /src/djapy/core/dec/sync_dec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/core/dec/sync_dec.py -------------------------------------------------------------------------------- /src/djapy/core/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/core/defaults.py -------------------------------------------------------------------------------- /src/djapy/core/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/core/labels.py -------------------------------------------------------------------------------- /src/djapy/core/mid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/core/mid.py -------------------------------------------------------------------------------- /src/djapy/core/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/core/parser.py -------------------------------------------------------------------------------- /src/djapy/core/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/core/response.py -------------------------------------------------------------------------------- /src/djapy/core/type_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/core/type_check.py -------------------------------------------------------------------------------- /src/djapy/core/typing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/core/typing_utils.py -------------------------------------------------------------------------------- /src/djapy/core/view_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/core/view_func.py -------------------------------------------------------------------------------- /src/djapy/openapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/openapi/__init__.py -------------------------------------------------------------------------------- /src/djapy/openapi/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/openapi/defaults.py -------------------------------------------------------------------------------- /src/djapy/openapi/icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/openapi/icons.py -------------------------------------------------------------------------------- /src/djapy/openapi/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/openapi/info.py -------------------------------------------------------------------------------- /src/djapy/openapi/openapi_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/openapi/openapi_path.py -------------------------------------------------------------------------------- /src/djapy/pagination/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/pagination/__init__.py -------------------------------------------------------------------------------- /src/djapy/pagination/base_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/pagination/base_pagination.py -------------------------------------------------------------------------------- /src/djapy/pagination/cursor_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/pagination/cursor_pagination.py -------------------------------------------------------------------------------- /src/djapy/pagination/dec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/pagination/dec.py -------------------------------------------------------------------------------- /src/djapy/pagination/offset_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/pagination/offset_pagination.py -------------------------------------------------------------------------------- /src/djapy/pagination/page_number_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/pagination/page_number_pagination.py -------------------------------------------------------------------------------- /src/djapy/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/djapy/schema/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/schema/__init__.py -------------------------------------------------------------------------------- /src/djapy/schema/handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/schema/handle.py -------------------------------------------------------------------------------- /src/djapy/schema/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/schema/schema.py -------------------------------------------------------------------------------- /src/djapy/schema/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/schema/user.py -------------------------------------------------------------------------------- /src/djapy/templates/djapy/swagger_cdn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/src/djapy/templates/djapy/swagger_cdn.html -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishwas-py/djapy/HEAD/uv.lock --------------------------------------------------------------------------------