tonidy / postman-doc-gen

Generate API documentation from a postman collection

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

postman-doc-gen

Generate HTML API documentation from a postman collection. You can use this tool to auto-generate the documentation and host it alongside your API's as detailed here.

Usage

  • Download the latest release of the executable from here.

  • Open a new terminal and call the executable with the parameter -h to see the help info Screenshot

  • To generate documentation using a postman collection, use the following command -

    ./postman_doc_gen [path/to/collection] -o [path/to/output/folder] 
    

    Screenshot

  • To apply environment values to the examples, use the following command -

    ./postman_doc_gen [path/to/collection] -o [path/to/output/folder] -e [path/to/environment/json]
    

    Screenshot

  • To enable download links to the collection and environment files, use the following command -

    ./postman_doc_gen [path/to/collection] -o [path/to/output/folder] -e [path/to/environment/json] -d true
    

    Screenshot

  • The output folder should now show the following -

    1. index.html - this is the html documentation generated from the collection
    2. css - this is the css folder consisting of the necessary css files
    3. js - this is the javascript folder consisting of the required js files
    4. collection json - if the download option was enabled, the collection json is also copied
    5. environment json - if the download option was enabled and an env file provided, the env json is also copied

To build locally

  • Clone the repository
  • Download Python 3.7
  • Create a virtual env (recommended but optional)
    python -m venv venv
    source ./venv/bin/activate
    
  • pip install the dependencies from the requirements file
    pip install -r requirements.txt
    
  • run the code
    python postman_doc_gen.py [path/to/collection] -o [path/to/output/folder] 
    
  • to create a new executable
    pyinstaller -F postman_doc_gen.spec postman_doc_gen.py
    

Sample HTML Documentation

A video of the sample html document generated using the collection and environment json files present in the example folder

Sample HTML

Shout outs

The following tools/repos have been instrumental in building this tool

About

Generate API documentation from a postman collection

License:MIT License


Languages

Language:CSS 82.7%Language:Python 11.1%Language:HTML 5.5%Language:JavaScript 0.7%