Generate API clients by parsing Swagger definitions
Project description
Swagger codegen for Python
Installation
pip install swagger-codegen
Usage example
# Generate Petstore Api client using 'petstore' package name.
swagger_codegen generate http://petstore.swagger.io:8080/api/v3/openapi.json petstore
python
Python 3.8.1 (default, Jan 23 2020, 13:58:52)
[Clang 11.0.0 (clang-1100.0.33.16)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from petstore import new_client, Configuration
>>> from swagger_codegen.api.adapter.requests import RequestsAdapter
>>> from petstore.apis.user.createUser import User
>>> client = new_client(RequestsAdapter(), Configuration(host="http://petstore.swagger.io:8080"))
>>> print(client.user.createUser(User(id=1, username="Swagger-Codegen")))
id=1 username='Swagger-Codegen' firstName=None lastName=None email=None password=None phone=None userStatus=0
You can see example source code for PetStore Api in example directory of a project.
Work in progress
Though library gives nice results for generated API, it is still in development. Some tests are missing. API is a subject to change until stable release.
Anyway backward compatibility will be kept as most as possible.
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
swagger-codegen-0.1.7.tar.gz
(14.5 kB
view details)
Built Distribution
File details
Details for the file swagger-codegen-0.1.7.tar.gz
.
File metadata
- Download URL: swagger-codegen-0.1.7.tar.gz
- Upload date:
- Size: 14.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.5 CPython/3.8.1 Darwin/19.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b8d784b7a4168deb3bbfc04818da94c8923c95c29e41b449ecf39bd666de73c |
|
MD5 | a6382a82bd7866ed602c3cfdd3b8af18 |
|
BLAKE2b-256 | e7d9c13e3cc54287e9e2df7406f1e193313f51060242c90eed6a05877b985f3f |
File details
Details for the file swagger_codegen-0.1.7-py3-none-any.whl
.
File metadata
- Download URL: swagger_codegen-0.1.7-py3-none-any.whl
- Upload date:
- Size: 23.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.5 CPython/3.8.1 Darwin/19.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 619454047a405062aea40b6c04f574ffa78a2540857999f598f95ff3ad24ab61 |
|
MD5 | 5d67359b3e3c9975f066a9ef1950a67c |
|
BLAKE2b-256 | 08ae5743d8135741f1826c53cbda63c31a1d3e78ede7419276837fea26264b6a |