Automatically generate swagger/OAS schemas from example api interactions.
Project description
Creating swagger/OAS specs for an existing api by hand is tedious and error-prone. swaggergenerator fixes this by creating schemas from example interactions:
Generation is a three step process. Here’s an example using httpbin:
import requests
from swaggergenerator import Generator, get_yaml
# 1: Create a Generator.
generator = Generator()
# 2: Provide one or more examples. They can be for different paths and verbs.
response = requests.get('https://httpbin.org/get')
generator.provide_example(response.request, response)
# 3: Generate a schema (specifically, a Swagger Paths Object).
print get_yaml(generator.generate_paths())
/get:
get:
description: TODO
parameters: []
responses:
'200':
description: TODO
schema:
additionalProperties: false
properties:
args:
additionalProperties: false
properties: {}
type: object
headers:
additionalProperties: false
properties:
Accept:
type: string
Accept-Encoding:
type: string
Connection:
type: string
Content-Length:
type: string
Host:
type: string
User-Agent:
type: string
type: object
origin:
type: string
url:
type: string
type: object
You can install it with $ pip install swaggergenerator.
Generation details
Generally, the generated schemas err on the side of being too strict. For example, additionalProperties is always set to False and parameters are always required. The recommended workflow is to generate schemas, validate them against all interactions in your test suite, and iterate until tests pass.
Here are the swagger features you can expect to be generated:
path objects for arbitrary verb/path combinations
all-digit path parameters
complex path parameters (when given alongside an all-digit example)
request schemas for 2xx responses
response schemas for 2xx responses
references to existing definitions
Here are some swagger features that won’t be generated. If your api uses any of these, you’ll need to fix up your output manually:
nullable/polymorphic types
heterogeneous arrays
optional properties
additionalProperties != False
Contributing
Inside your vitualenv:
$ cd swaggergenerator
$ pip install -e .
$ pip install -r requirements.txt
To run the tests:
$ py.test tests/
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file swaggergenerator-0.0.5.tar.gz
.
File metadata
- Download URL: swaggergenerator-0.0.5.tar.gz
- Upload date:
- Size: 8.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 96f45c8bbd5d6b57c19e80e313d4ad1b720b6252d434a633e13e95ae316c0681 |
|
MD5 | b5afe5f1ec5cef6023bd9e2a7c698a76 |
|
BLAKE2b-256 | 1e56e5a6ca09fccb2345f7672bd900e4db480b7991052dee819f1b3056a8135f |