Plaid client, generated from the OpenAPI spec.
Project description
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.
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
plaid2-0.3.0.tar.gz
(322.1 kB
view details)
Built Distribution
plaid2-0.3.0-py3-none-any.whl
(808.5 kB
view details)
File details
Details for the file plaid2-0.3.0.tar.gz
.
File metadata
- Download URL: plaid2-0.3.0.tar.gz
- Upload date:
- Size: 322.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.28.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e78ec67e001b13a40e519f3e50eff66a4b22a047e9e6b9c83c43ca6b86793ba |
|
MD5 | a6bcdeccfc2396a909325bd312494215 |
|
BLAKE2b-256 | 298e85615ea5cd8775b48731b20ffec0bec4d487e7e2be060a3ab08faaa04d26 |
File details
Details for the file plaid2-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: plaid2-0.3.0-py3-none-any.whl
- Upload date:
- Size: 808.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.28.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3af1171e222068bb83157bb99099fae89bfe895f9876805bc32dafbf1b71e1c2 |
|
MD5 | c0487d1a1b1cf661c9de63fc7670e669 |
|
BLAKE2b-256 | 1c90a6f04690b49a424495f5de0233f0e31b0b3f091597fad6f15b9b50df1d8a |