Skip to main content

No project description provided

Project description

Fast-Man

PyPI version License: MIT CI Release CodeQL

Fast-Man is a project that aims to automate the creation of postman_collection.json for a FastAPI app. This tool simplifies the process of generating Postman collections, making it easier to test and document your FastAPI APIs.

Table of Contents

Features

  • Automated Postman Collection Generation: Automatically generate a Postman collection from your FastAPI app.
  • Customizable Output: Specify the output file name, collection name, and host URL.
  • Bearer Token Authentication: Supports bearer token authentication for secure API testing.
  • Detailed Route Information: Includes request headers, body, parameters, and responses in the generated collection.

Installation

You can install fast-man using pip:

pip install fast-man

Usage

To generate a Postman collection, use the fast-man command-line tool. You need to provide the path to your FastAPI app, and you can optionally specify the output file, collection name, and host URL.

fast-man --app core.main:app \
--output postman_collection.json \
--name "test-api" \
--host "http://test.com:8000/api/v1" \
--readme "README.md"

Using Command-Line Arguments

  • --app: The path to the FastAPI app instance (required).
  • --output: The output file name for the Postman collection (default: postman_collection.json).
  • --name: The name of the Postman collection (default: API Collection).
  • --host: The host URL for the API (default: http://localhost).
  • --readme: The path to the README.md file (default: README.md).

Note: If you want a custom documentation to be displayed in the Postman collection other than your project's README.md, you can use the --readme flag.

Using in a Script

You can also use fast-man directly in your Python code. Here is an example:

from fast_man.converter import generate_postman_collection
from fastapi import FastAPI

app = FastAPI()

@app.get("/items/{item_id}")
async def read_item(item_id: int):
    return {"item_id": item_id}

@app.post("/items/")
async def create_item(name: str):
    return {"name": name}

generate_postman_collection(
    app=app,
    output_file='postman_collection.json',
    input_name='test-api',
    input_host='http://localhost:8000',
    readme_file='README.md'
)

print("Postman collection generated successfully.")

Example

Here is an example of how to use fast-man.

Given the project structure:

my-project/
├── core/
│   ├── main.py
├── tests/
│   ├── test_main.py
├── README.md

You can generate the Postman collection using the following command at root:

export PYTHONPATH=$(pwd)
pip install fastapi pydantic requests numpy
pip install -e /Users/renzof/Documents/GitHub/fast-man
fast-man --app core.main:app --output postman_collection.json --name "test-api" --host "http://test.com:8000/api/v1" --readme "README.md"

Project Structure

The project is structured as follows:

  • fast_man/: Contains the main code for the fast-man tool.
    • __init__.py: Initializes the package.
    • converter.py: Contains the logic for generating the Postman collection.
    • utils.py: Utility functions used by the converter.
  • tests/: Contains tests for the fast-man tool.
    • test_converter.py: Tests for the converter module.
  • setup.py: Setup script for packaging the project.
  • LICENSE: License file for the project.
  • .gitignore: Git ignore file to exclude unnecessary files from version control.

License

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

Contributing

Contributions are welcomed! Please open an issue or submit a pull request on GitHub; or just get in contact.

Contact

For any questions or issues, please contact Renzo Franceschini at [rennf93@gmail.com].

Funding

If you find this project useful, please consider supporting its development by making a donation. Your support is greatly appreciated!

Acknowledgements

Special thanks to the FastAPI and Pydantic communities for their excellent libraries and documentation.

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

fast-man-0.1.7.tar.gz (9.5 kB view details)

Uploaded Source

Built Distribution

fast_man-0.1.7-py3-none-any.whl (10.8 kB view details)

Uploaded Python 3

File details

Details for the file fast-man-0.1.7.tar.gz.

File metadata

  • Download URL: fast-man-0.1.7.tar.gz
  • Upload date:
  • Size: 9.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for fast-man-0.1.7.tar.gz
Algorithm Hash digest
SHA256 44cf0fcfabdbba9b19dc5a0f4fc193cf40a1f7dc880e8b1de6f3cb4f6b1de6bb
MD5 2eeb23d2bf318aea430c1bbba8c1b013
BLAKE2b-256 7f5084a680c6de0991f0f04fccc6a759379e41a82db4180c9eae70e4d58733ae

See more details on using hashes here.

File details

Details for the file fast_man-0.1.7-py3-none-any.whl.

File metadata

  • Download URL: fast_man-0.1.7-py3-none-any.whl
  • Upload date:
  • Size: 10.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for fast_man-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 8f110ffc8a95fa612728aacc1d3de1a87bda5a66f4c7cdbc713edf5825b3ae60
MD5 aa3bf059ea7cbe88935b71759834ef3e
BLAKE2b-256 699392405772f84185f5b4a855420c2c0076d4fb7eda1381a9471bee4b9fca01

See more details on using hashes here.

Supported by

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