Create Postman collection from Flask application using flask2postman
Last Updated :
28 Apr, 2022
Prerequisite: Introduction to Postman, First App using Flask
Since Postman is gaining popularity in the development domain, this article explains a way in which it can be easily integrated with Flask APIs using command-line utility written in Python. We will be using the flask2postman module. But you will be why this module. Here’s why –
- It is a straightforward tool to generate Postman collection from Flask APIs.
- It works in Command-Line.
- Various customizations provided such as configurable base URLs, etc.
- Output is a JSON file, which can be easily imported to the postman.
Installation
To install this type the below command in the terminal.
pip install flask2postman
Command
flask2postman [-h] [-n NAME] [-b BASE_URL] [-a] [-i] [-f] flask_instance
Parameters:
Positional arguments: flask_instance
Optional arguments:
- -h, –help: Prints help and exits
- -n NAME, –name NAME: Name of postman Collection. Defaults to name of app/current directory
- -b BASE_URL, –base_url BASE_URL: Base url ( Server ) of all APIs in Postman Collection. Defaults to {{base_url}}.
- -a, –all: If provided generations OPTION/HEAD methods.
- -s, –static: Generate static files in folder /static/{{filename}}.
- -i, –indent: Intends the output in created .json() file.
- -f, –folders: If blueprints provided, adds subfolders for it.
Stepwise implementation
Step 1: Importing libraries and initializing app context
Python3
from flask import Flask, render_template
app = Flask(__name__)
|
Step 2: Adding API routes
Python3
@app .route( '/' )
def index():
return render_template( 'index.html' )
@app .route( '/add' , methods = [ 'POST' ])
def post_data():
return render_template( 'form.html' )
@app .route( '/gfg/<int:page>' )
def gfg(page):
return render_template( 'gfg.html' , page = page)
|
Step 3: Running app
Python3
if __name__ = = '__main__' :
app.run()
|
Working
Run the command on the command line.
flask2postman flask-postman.app > gfg_postman.json
Creates a JSON file with the name: gfg_postman.json
{“id”: “516d259f-77b8-4aa9-9f13-59feb59d0cb4”, “name”: “gfg”, “timestamp”: 1621215826922, “requests”: [{“id”: “95f002e8-9923-4123-b7a8-dd39a38c6e20”, “data”: [], “description”: “”, “headers”: “”, “method”: “GET”, “name”: “gfg”, “time”: 1621215826922, “url”: “{{base_url}}/gfg/{{page}}”, “collectionId”: “516d259f-77b8-4aa9-9f13-59feb59d0cb4”, “dataMode”: “params”}, {“id”: “0ca2ca2f-33b6-4a37-936e-bba48a5592fa”, “data”: [], “description”: “”, “headers”: “”, “method”: “GET”, “name”: “index”, “time”: 1621215826922, “url”: “{{base_url}}/”, “collectionId”: “516d259f-77b8-4aa9-9f13-59feb59d0cb4”, “dataMode”: “params”}, {“id”: “234d7de4-d1c8-4d14-b86b-d2c71e338b54”, “data”: [], “description”: “”, “headers”: “”, “method”: “POST”, “name”: “data”, “time”: 1621215826922, “url”: “{{base_url}}/add”, “collectionId”: “516d259f-77b8-4aa9-9f13-59feb59d0cb4”, “dataMode”: “params”}], “order”: [“95f002e8-9923-4123-b7a8-dd39a38c6e20”, “0ca2ca2f-33b6-4a37-936e-bba48a5592fa”, “234d7de4-d1c8-4d14-b86b-d2c71e338b54”], “folders”: []}
The next step is to import the collection into postman.
Output:

Imported Postman Collection
Notice the default {{base_url}} and path parameter appended.
Example
flask2postman flask-postman.app –name “GFG Flask Collection” –base_url 127.0.0.1:5000 –i > custom_gfg_postman.json
custom_gfg_postman.json ( Indented now )
{
"folders": [],
"id": "e76915b6-2051-445c-934d-625059e82ed1",
"name": "GFG Flask Collection",
"order": [
"7c303b3b-d9cc-4c87-80f0-2e6ddbd8ec07",
"a08769de-09ee-49e1-b528-08d38293fe48",
"3259b993-364b-421c-adc1-df3f57ea9048"
],
"requests": [
{
"collectionId": "e76915b6-2051-445c-934d-625059e82ed1",
"data": [],
"dataMode": "params",
"description": "",
"headers": "",
"id": "7c303b3b-d9cc-4c87-80f0-2e6ddbd8ec07",
"method": "GET",
"name": "gfg",
"time": 1621216574211,
"url": "127.0.0.1:5000/gfg/{{page}}"
},
{
"collectionId": "e76915b6-2051-445c-934d-625059e82ed1",
"data": [],
"dataMode": "params",
"description": "",
"headers": "",
"id": "a08769de-09ee-49e1-b528-08d38293fe48",
"method": "GET",
"name": "index",
"time": 1621216574211,
"url": "127.0.0.1:5000/"
},
{
"collectionId": "e76915b6-2051-445c-934d-625059e82ed1",
"data": [],
"dataMode": "params",
"description": "",
"headers": "",
"id": "3259b993-364b-421c-adc1-df3f57ea9048",
"method": "POST",
"name": "data",
"time": 1621216574211,
"url": "127.0.0.1:5000/add"
}
],
"timestamp": 1621216574211
}
Output :

Customized Postman Collection
Notice the collection name, base URL, and indentations being added in JSON collection.
Similar Reads
Create Postman collection from Flask application using flask2postman
Prerequisite: Introduction to Postman, First App using Flask Since Postman is gaining popularity in the development domain, this article explains a way in which it can be easily integrated with Flask APIs using command-line utility written in Python. We will be using the flask2postman module. But yo
3 min read
Creating first web application using Bottle Framework - Python
There are many frameworks in python which allow you to create a webpage like bottle, flask, django. In this article, you will learn how to create a simple app using bottle web framework. Bottle is a fast, simple and lightweight WSGI micro web-framework for Python. It is distributed as a single file
2 min read
Get the Names of all Collections using PyMongo
PyMongo is the module used for establishing a connection to the MongoDB using Python and perform all the operations like insertion, deletion, updating, etc. PyMongo is the recommended way to work with MongoDB and Python. Note: For detailed information about Python and MongoDB visit MongoDB and Pytho
2 min read
Get all the Documents of the Collection using PyMongo
To get all the Documents of the Collection use find() method. The find() method takes a query object as a parameter if we want to find all documents then pass none in the find() method. To include the field in the result the value of the parameter passed should be 1, if the value is 0 then it will b
1 min read
Flask NEWS Application Using Newsapi
In this article, we will create a News Web Application using Flask and NewsAPI. The web page will display top headlines and a search bar where the user can enter a query, after processing the query, the webpage will display all relevant articles (up to a max of 100 headlines). We will create a simpl
7 min read
Implement ChatGPT in a Flask Application
You can build dynamic and interactive chat interfaces by integrating ChatGPT into a Flask application. This article's instructions can help you integrate ChatGPT into your Flask project and give users engaging chat experiences. Improve the user interface, try out new prompts, and look into new optio
3 min read
Documenting Flask Endpoint using Flask-Autodoc
Documentation of endpoints is an essential task in web development and being able to apply it in different frameworks is always a utility. This article discusses how endpoints in Flask can be decorated to generate good documentation of them using the Flask-Autodoc module. This module provides the fo
4 min read
Create A Bookmark Organizer For Website Using Flask
This article explains how to make a tool called a Bookmark Organizer with Flask for a website. With this tool, we can add, create, update, delete, and edit bookmarks easily. We just need to input the title and link, and we can save them. Then, we can click on the link anytime to visit the website. W
5 min read
Create Contact Us using WTForms in Flask
WTForms is a library designed to make the processing of forms easier to manage. It handles the data submitted by the browser very easily. In this article, we will discuss how to create a contact us form using WTForms. Advantages of WT-FORM:We don't have to worry about validators.Avoidance of Cross-S
3 min read
Create Scatter Charts in Matplotlib using Flask
In this article, we will see how to create charts in Matplotlib with Flask. We will discuss two different ways how we can create Matplotlib charts in Flask and present it on an HTML webpage with or without saving the plot using Python. File structure Create and Save the Plot in the Static Directory
4 min read