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.12.tar.gz
(15.1 kB
view details)
Built Distribution
File details
Details for the file swagger-codegen-0.1.12.tar.gz
.
File metadata
- Download URL: swagger-codegen-0.1.12.tar.gz
- Upload date:
- Size: 15.1 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 | fea7122501d3701486fc06c0ffdce927b6c16c6fb125d6b4dd9f436d1a63e879 |
|
MD5 | ac362c986d4db3095b6b3c4b15a46cd0 |
|
BLAKE2b-256 | 43b5fae5446da1a3e2b116b9b14106d0daf4fe14d615688ec4838388df995935 |
File details
Details for the file swagger_codegen-0.1.12-py3-none-any.whl
.
File metadata
- Download URL: swagger_codegen-0.1.12-py3-none-any.whl
- Upload date:
- Size: 24.6 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 | 70d5dbe296c6d1fc40d2cbeccc457f26e6df49b9d980afecca555615c0329284 |
|
MD5 | ae5326785bcfd6f02333bfc50bfd402c |
|
BLAKE2b-256 | b814a789a13cd1a3cfd399e401678ae71702bea09ef427f339ee5e923bb8ba09 |