gitextract_w4lwbgyf/ ├── .github/ │ └── workflows/ │ └── tests.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGES.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── bin/ │ ├── mkchangelog.py │ └── release ├── docs/ │ ├── Makefile │ ├── apifairy_class.rst │ ├── conf.py │ ├── decorators.rst │ ├── guide.rst │ ├── index.rst │ ├── intro.rst │ └── make.bat ├── examples/ │ ├── README.md │ ├── app.py │ └── app_with_class_views.py ├── pyproject.toml ├── src/ │ └── apifairy/ │ ├── __init__.py │ ├── core.py │ ├── decorators.py │ ├── exceptions.py │ ├── fields.py │ └── templates/ │ └── apifairy/ │ ├── elements.html │ ├── rapidoc.html │ ├── redoc.html │ └── swagger_ui.html ├── tests/ │ ├── __init__.py │ └── test_apifairy.py └── tox.ini