Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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

openapi plaid python

Last synced: 6 days ago
JSON representation

Plaid client, generated from the OpenAPI spec

Awesome Lists containing this project

README

        



Stars


Build Status



Downloads


Pypi

Plaid client, generated from the OpenAPI spec.

# Usage

```python
import os
from plaid2 import AsyncPlaidClient
from plaid2 import PlaidClient

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

async def async_main():
client = AsyncPlaidClient.from_env()
response = await client.item_application_list()
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:

* `PLAID_ENV`

* `PLAID_CLIENT_ID`

* `PLAID_SECRET`

* `PLAID_VERSION`

# Documentation

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).*