Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/libninjacom/postman-py

Postman client, generated from the OpenAPI spec
https://github.com/libninjacom/postman-py

openapi postman python

Last synced: about 1 month ago
JSON representation

Postman client, generated from the OpenAPI spec

Awesome Lists containing this project

README

        



Stars


Build Status


Pypi

Postman client, generated from the OpenAPI spec.

# Usage

```python
import os
from postman_api import AsyncPostmanClient
from postman_api import PostmanClient

def main():
client = PostmanClient.from_env()
response = client.get_all_apis()
print(f"{response!r}")

async def async_main():
client = AsyncPostmanClient.from_env()
response = await client.get_all_apis()
print(f"{response!r}")

if __name__ == "__main__":
if os.environ.get("ASYNC"):
import asyncio
asyncio.run(async_main())
else:
main()

```

This example loads configuration from environment variables, specifically:

* `POSTMAN_API_KEY`

# Documentation

* [API Documentation](https://www.postman.com/postman/workspace/postman-public-workspace/documentation/12959542-c8142d51-e97c-46b6-bd77-52bb66712c9a)

You can see working examples of every API call in the `examples/` directory.

# Contributing

Contributions are welcome!

*Library created with [Libninja](https://www.libninja.com).*