Skip to main content

Postman collection parser for python

Project description

postmanparser

Build codecov

Introduction

Postman collection parser written in python3 to extract HTTP requests/responses. Currently supports reading JSON schema two ways

  • Read from .json file
  • Fetch from url where schema is exposed

Installation

  • Using pip

     pip install postmanparser
    
  • Using poetry

      poetry add postmanparser
    

Getting Started

Parsing API Schema

You can parse API schema from file or from url as below.

  • From file
from postmanparser import Collection
collection = Collection()
collection.parse_from_file("path/to/postman/schema.json")
  • From url
from postmanparser import Collection
collection = Collection()
collection.parse_from_url("http://example.com/schema")

URL should be a GET request.

postmanparser also validates for the required fields mentioned by postman schema documentation which is available at https://schema.postman.com/

Reading the data

Postman collection contains group of requests and one or more folders having group of requests and/or nested folders in it.

Getting requests from the collection

You can retreive all the requests present in the collection using get_requests() method. This method will recursively search for the requests inside folders is present.

collection = Collection()
collection.parse_from_file("path/to/postman/schema.json")
requests = collection.get_requests()
for request in requests:
        print(request) #Either a Request object or str

You can retrieve the requests inside specific folder by using folder="folder_name" in get_requests method. To get requests from the nested folder, use folder path separated by /

For e.g. to get requests inside folder2 which is nested in folder1

requests = collection.get_requests(folder="folder/sub_folder")

You can pass recursive=False to get_requests() if you don't want to do recusrive lookup. In this case you will get all the requests present at the root level of collection or at the folder level is folder is specified.

requests = collection.get_requests(recursive=False)

Getting requests mapped by folder in the collection

You can access requests in the collections as requests map using get_requests_map(). The key of the dict is path to the folder separated by backlash and value is list of requests of type Request or str. This will be recursive search for all the folders and sub folders inside it.

collection = Collection()
collection.parse_from_file("path/to/postman/schema.json")
requests = collection.get_requests_map()
requests = collection.get_requests_map(folder="folder/sub_folder")

Validation

If schema found to be invalid following exception will be thrown.

  • MissingRequiredFieldException
  • InvalidPropertyValueException
  • InvalidObjectException
  • FolderNotFoundException

Schema Support

postmanparser is still in early stages and will be updated with missing schema components soon.

Following are the objects which are not supported yet but will be added in the future.

  • protocolProfileBehavior

Collection SDK Compatibility

Currently postmanparser is not aligned with collection SDK node module. http://www.postmanlabs.com/postman-collection/

This Might be added in future. Feel free to raise the PR.

Version Compatibility

postmanparser supports collection schema v2.0.0 and v2.1.0.

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

postmanparser-0.1.9.tar.gz (13.3 kB view details)

Uploaded Source

Built Distribution

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

postmanparser-0.1.9-py3-none-any.whl (18.7 kB view details)

Uploaded Python 3

File details

Details for the file postmanparser-0.1.9.tar.gz.

File metadata

  • Download URL: postmanparser-0.1.9.tar.gz
  • Upload date:
  • Size: 13.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.0.0 CPython/3.13.1 Darwin/24.2.0

File hashes

Hashes for postmanparser-0.1.9.tar.gz
Algorithm Hash digest
SHA256 e44f74cd962dc082ab7330de2062b3a8da281cc5be28d2a9e3ab7f11fd3c4b4b
MD5 cc558a34d6f3fbc8aa0bafa5bdda5f9a
BLAKE2b-256 647d00fbf858bff8d7cf9754bf6a1361eca025b5ed2303cde86f3691d2c5afcc

See more details on using hashes here.

File details

Details for the file postmanparser-0.1.9-py3-none-any.whl.

File metadata

  • Download URL: postmanparser-0.1.9-py3-none-any.whl
  • Upload date:
  • Size: 18.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.0.0 CPython/3.13.1 Darwin/24.2.0

File hashes

Hashes for postmanparser-0.1.9-py3-none-any.whl
Algorithm Hash digest
SHA256 b964049b65c60897122c5b16d9f3bb01f10a74c989b82e62866c21385d6dca69
MD5 95e22e85f5640772448ee83ad8d35f9a
BLAKE2b-256 a7dc355aabff03e20f6f36b4365aa72c878fb68747f51ea58abb9a8716959456

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