├── .gitignore ├── LICENSE ├── README.md ├── convert.py ├── kitebuilder.py ├── parse.py ├── poetry.lock ├── pyproject.toml └── swaggerhub_scraper.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/kitebuilder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/kitebuilder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/kitebuilder/HEAD/README.md -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/kitebuilder/HEAD/convert.py -------------------------------------------------------------------------------- /kitebuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/kitebuilder/HEAD/kitebuilder.py -------------------------------------------------------------------------------- /parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/kitebuilder/HEAD/parse.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/kitebuilder/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/kitebuilder/HEAD/pyproject.toml -------------------------------------------------------------------------------- /swaggerhub_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/kitebuilder/HEAD/swaggerhub_scraper.py --------------------------------------------------------------------------------