Plaid client, generated from the OpenAPI spec.
Usage
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.
Release files for plaid2 0.3.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| plaid2-0.3.0.tar.gz | 322.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| plaid2-0.3.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 1.1 MB
Release files / plaid2-0.3.0.tar.gz
| Download URL | plaid2-0.3.0.tar.gz |
|---|---|
| Size | 322.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
3e78ec67e001b13a40e519f3e50eff66a4b22a047e9e6b9c83c43ca6b86793ba
|
|
BLAKE2b-256 checksum How to use checksums |
298e85615ea5cd8775b48731b20ffec0bec4d487e7e2be060a3ab08faaa04d26
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
python-requests/2.28.1
|
Release files / plaid2-0.3.0-py3-none-any.whl
| Download URL | plaid2-0.3.0-py3-none-any.whl |
|---|---|
| Size | 808.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
3af1171e222068bb83157bb99099fae89bfe895f9876805bc32dafbf1b71e1c2
|
|
BLAKE2b-256 checksum How to use checksums |
1c90a6f04690b49a424495f5de0233f0e31b0b3f091597fad6f15b9b50df1d8a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
python-requests/2.28.1
|