├── .gitignore ├── LICENSE ├── README.md ├── example ├── __init__.py └── dto.py ├── flask_siwadoc ├── __init__.py ├── error.py ├── models.py ├── openapi.py ├── schema.py ├── templates │ ├── rapidoc.html │ ├── redoc.html │ └── swagger.html └── utils.py ├── requirements.txt ├── screnshots ├── 20220604201906.png ├── 20220604202644.png ├── 20220604203420.png ├── 20220604214851.png ├── 20220605012328.png ├── 20220605014105.png ├── 20220605014223.png ├── 20220605014442.png ├── 20220615180504.png ├── 20220721192111.png ├── 20220721192749.png ├── 20220721193013.png ├── 20220721193849.png ├── 20220722100939.png ├── 20220722101346.png ├── 20220722102652.png ├── 20220722103100.png ├── 20220722104304.png ├── 20220722110623.png ├── 20230310094000.png ├── 20230310094400.png ├── 20230310094500.png └── 6802366f4419fd9db9fb3c730f873d2.jpg ├── setup.py └── tests ├── __init__.py ├── test_formdata.py └── test_method_view.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/README.md -------------------------------------------------------------------------------- /example/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/example/__init__.py -------------------------------------------------------------------------------- /example/dto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/example/dto.py -------------------------------------------------------------------------------- /flask_siwadoc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/flask_siwadoc/__init__.py -------------------------------------------------------------------------------- /flask_siwadoc/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/flask_siwadoc/error.py -------------------------------------------------------------------------------- /flask_siwadoc/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/flask_siwadoc/models.py -------------------------------------------------------------------------------- /flask_siwadoc/openapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/flask_siwadoc/openapi.py -------------------------------------------------------------------------------- /flask_siwadoc/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/flask_siwadoc/schema.py -------------------------------------------------------------------------------- /flask_siwadoc/templates/rapidoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/flask_siwadoc/templates/rapidoc.html -------------------------------------------------------------------------------- /flask_siwadoc/templates/redoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/flask_siwadoc/templates/redoc.html -------------------------------------------------------------------------------- /flask_siwadoc/templates/swagger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/flask_siwadoc/templates/swagger.html -------------------------------------------------------------------------------- /flask_siwadoc/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/flask_siwadoc/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | pydantic==1.9.0 3 | flask_httpauth==4.8.0 -------------------------------------------------------------------------------- /screnshots/20220604201906.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/screnshots/20220604201906.png -------------------------------------------------------------------------------- /screnshots/20220604202644.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/screnshots/20220604202644.png -------------------------------------------------------------------------------- /screnshots/20220604203420.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/screnshots/20220604203420.png -------------------------------------------------------------------------------- /screnshots/20220604214851.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/screnshots/20220604214851.png -------------------------------------------------------------------------------- /screnshots/20220605012328.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/screnshots/20220605012328.png -------------------------------------------------------------------------------- /screnshots/20220605014105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/screnshots/20220605014105.png -------------------------------------------------------------------------------- /screnshots/20220605014223.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/screnshots/20220605014223.png -------------------------------------------------------------------------------- /screnshots/20220605014442.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/screnshots/20220605014442.png -------------------------------------------------------------------------------- /screnshots/20220615180504.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/screnshots/20220615180504.png -------------------------------------------------------------------------------- /screnshots/20220721192111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/screnshots/20220721192111.png -------------------------------------------------------------------------------- /screnshots/20220721192749.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/screnshots/20220721192749.png -------------------------------------------------------------------------------- /screnshots/20220721193013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/screnshots/20220721193013.png -------------------------------------------------------------------------------- /screnshots/20220721193849.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/screnshots/20220721193849.png -------------------------------------------------------------------------------- /screnshots/20220722100939.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/screnshots/20220722100939.png -------------------------------------------------------------------------------- /screnshots/20220722101346.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/screnshots/20220722101346.png -------------------------------------------------------------------------------- /screnshots/20220722102652.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/screnshots/20220722102652.png -------------------------------------------------------------------------------- /screnshots/20220722103100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/screnshots/20220722103100.png -------------------------------------------------------------------------------- /screnshots/20220722104304.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/screnshots/20220722104304.png -------------------------------------------------------------------------------- /screnshots/20220722110623.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/screnshots/20220722110623.png -------------------------------------------------------------------------------- /screnshots/20230310094000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/screnshots/20230310094000.png -------------------------------------------------------------------------------- /screnshots/20230310094400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/screnshots/20230310094400.png -------------------------------------------------------------------------------- /screnshots/20230310094500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/screnshots/20230310094500.png -------------------------------------------------------------------------------- /screnshots/6802366f4419fd9db9fb3c730f873d2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/screnshots/6802366f4419fd9db9fb3c730f873d2.jpg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_formdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/tests/test_formdata.py -------------------------------------------------------------------------------- /tests/test_method_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzjun567/flask-siwadoc/HEAD/tests/test_method_view.py --------------------------------------------------------------------------------