├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── autoswagger.py ├── image └── output.png ├── requirements.txt └── swagger.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intruder-io/autoswagger/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intruder-io/autoswagger/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intruder-io/autoswagger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intruder-io/autoswagger/HEAD/README.md -------------------------------------------------------------------------------- /autoswagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intruder-io/autoswagger/HEAD/autoswagger.py -------------------------------------------------------------------------------- /image/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intruder-io/autoswagger/HEAD/image/output.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intruder-io/autoswagger/HEAD/requirements.txt -------------------------------------------------------------------------------- /swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intruder-io/autoswagger/HEAD/swagger.yaml --------------------------------------------------------------------------------