Create Postman JSON API documentation files from Sanic.
Project description
sanic-to-json
Generate a Postman JSON file from a Sanic app. The JSON file can directly uploaded into the Postman client or through their API.
Using the postman schema we can build Postman Collections using python endpoints from Sanic (Flask apps need testing). The script parses the Sanic app. It searches for blueprints. The blueprints, through routes, provide docs strings data. The doc string data is used to populate a Postman formatted JSON file. The JSON file can then be uploaded to Postman as a collection.
Once we have Postman formatted JSON we can create API documentation through the Postman API
How to use
- to execute an example run
python -m examples.example_script
which executes
from sanic_to_json import generate_sanic_json
from examples.app import app
generate_sanic_json("Test API", app, filename="postman_collection.json")
The above code formats the Postman collection with 'Test API' and doc strings from Sanic app, app
, and yields postman_collection.json
To add body
and header
elements to Postman JSON
Placing INI
in doc string will cause the text below to be loaded into a python config object, which then get converted to the appropiate headers and JSON body in Posttman.
For example, as found in endpoint-three
INI
[request]
headers = {"Content-Type": "application/json"}
body = {"username": "{{username}}", "password": "{{password}}"}
To add query parameters
Similar to above placing sections under INI that are prefixed will start a example request. For example, as found in endpoint-one
"""Return text from request.
INI
[request]
headers = {"Content-Type": "application/json","x-amz-sns-message-type": "Notification"}
query = ?day=1&temp=F
"""
How to document Sanic app and Blueprints
-
As the example shows, the Sanic app should have a
.doc
attribute. This doc string will serve as the introduction to the API in Postman docs, e.g.,app.__doc__ = "This API does stuff."
-
Blueprints should also include a doc string, this will serve as the description to each collection folder in Postman. Again see
examples
folderbp1.__doc__ = "This is the doc string for blueprint1."
-
Note: You can't send a JSON body with GET method.
How to install
pip install sanic-to-json
Contributors
See the GitHub contributor page
License
sanic-to-json is open source software licensed as MIT.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file sanic-to-json-0.1.9.tar.gz
.
File metadata
- Download URL: sanic-to-json-0.1.9.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.17 CPython/3.7.1 Linux/4.15.0-1028-gcp
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d0f5c350b33e08519dd1e5195b938fe87bcb92f0b74ab738713c023e9bcbd0d |
|
MD5 | 452bc238b3744549c57d93eb45969f3f |
|
BLAKE2b-256 | ae815d850c19ce2a82945a3ffcfa5d8a1c4e472389957cd569c642acb86a629a |
File details
Details for the file sanic_to_json-0.1.9-py3-none-any.whl
.
File metadata
- Download URL: sanic_to_json-0.1.9-py3-none-any.whl
- Upload date:
- Size: 7.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.17 CPython/3.7.1 Linux/4.15.0-1028-gcp
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4059b867e24d4a5a0a69ddc9b892bd6e182061771475afaa1b434f46dd29db2 |
|
MD5 | a3722d8a973778ad3e463ca7b3276431 |
|
BLAKE2b-256 | 1e32948ac09561dfbba7cbd974981ed3955d96164c30bb60d2d980cd2f67fd2c |