Metadata-Version: 2.4
Name: postman-runner
Version: 0.2.0
Summary: Local-only Postman collection runner CLI.
Keywords: postman,cli,http,testing
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Testing
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.32.0

# Postman Runner (CLI)

This project provides a local-only command line runner for Postman collections. It loads collections exported in JSON format, applies optional environments, and executes the selected request using the `requests` library. Assertions defined in the collection or supplied separately are evaluated and reported in the console output.

## Quick start

```bash
pip install postman-runner
postman-runner --help
```

Export your collection (v2.1 JSON) and, if needed, the related environment file, then run:

```bash
postman-runner --collection collection.json --request-name "Sample request"
```

Additional usage details, including Farsi documentation, are available in `README.fa.md`.
