Skip to main content

No project description provided

Project description

RestCodeGen

RestCodeGen is a tool for generating Python clients based on OpenAPI 3 specifications.
This tool enables testers to quickly create client libraries for interacting with REST APIs implemented with OpenAPI.

Installation

To install, you need the required dependencies. Make sure you have Python 3.10 or higher installed.

pip install restcodegen

Usage

Once installed, you can use the restcodegen command to generate a client.

Command Syntax

restcodegen generate -u "http://example.com/openapi.json" -s "my-service" -a false

Command Parameters

- --url, -u: URL of the OpenAPI specification (required).
- --service-name, -s: Name of the service (required).
- --async-mode, -a: Flag to enable asynchronous client generation (default is false).

Example

To generate a client for an API available at the URL https://petstore3.swagger.io/api/v3/openapi.json, you can use the following command:

restcodegen generate -u "https://petstore3.swagger.io/api/v3/openapi.json" -s "petstore" -a false

Result

After a successful command execution, a client library will be created with a name corresponding to the provided service name. The generated files will contain classes and methods for interacting with the API described in the provided specification.

Structure:

└── clients                      
     └── http     
        ├── schemas               # OpenAPI 3.0.0 schemas for all generated apis                   
        └── service_name          # Service name     
            ├── apis              # APIs                    
            └── models            # Pydantic models   

Generated client usage

The generated API client includes built-in logging using structlog, which allows you to easily track API requests and responses. Additionally, instead of using the built-in ApiClient, you can provide your own HTTPX client for more customization.

Here is an example of how to use the generated client:

from restcodegen.rest_client.client_sync import ApiClient
from restcodegen.rest_client.configuration import Configuration
from clients.http.petstore import PetApi
import structlog


structlog.configure(
    processors=[
        structlog.processors.JSONRenderer(
            indent=4,
            ensure_ascii=True,
        )
    ]
)

if __name__ == '__main__':
    configuration = Configuration(host="https://petstore3.swagger.io/api/v3")
    api_client = ApiClient(configuration)  # You can replace this with your custom client
    # apiclient = httpx.AsyncClient()  # Uncomment if using a custom HTTPX client
    pet_api = PetApi(api_client)
    response = pet_api.get_pet_pet_id(pet_id=1)
    print(response)

License

This project is licensed under the MIT License. See the LICENSE file for more information.


I hope that RestCodeGen will simplify your work with REST APIs. If you have any questions or suggestions, please create an issue in the repository.

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

restcodegen-0.1.3.tar.gz (12.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

restcodegen-0.1.3-py3-none-any.whl (16.5 kB view details)

Uploaded Python 3

File details

Details for the file restcodegen-0.1.3.tar.gz.

File metadata

  • Download URL: restcodegen-0.1.3.tar.gz
  • Upload date:
  • Size: 12.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.21

File hashes

Hashes for restcodegen-0.1.3.tar.gz
Algorithm Hash digest
SHA256 da4894c2ff7f69b397eeb51e8e400cbda5bb7aeffaf6aa05f6ecc7b3b1ce102c
MD5 8bd13aa7d49f8fb01887fcec97484c0a
BLAKE2b-256 df5d4f587da5dea0acc55c8fe67cae180b9f1f1bff7afd84b339ed96df5092cf

See more details on using hashes here.

File details

Details for the file restcodegen-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: restcodegen-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 16.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.21

File hashes

Hashes for restcodegen-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 0bc14f24de9c2c8c8aef2707cefca9257494a46fcbb72226a5bc44d674fb0a39
MD5 be185cc95d338a2795a1ed6d5dc3b8bc
BLAKE2b-256 4b9f92f6a0888bbbb8666dc3bc3b2d1fa468586e3ce385f2058967e5b3db9ef0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page