@@ -23,12 +23,12 @@ Instantiate and use the client with the following:
2323from pipedream import Pipedream
2424
2525client = Pipedream(
26+ project_id = " YOUR_PROJECT_ID" ,
2627 x_pd_environment = " YOUR_X_PD_ENVIRONMENT" ,
2728 client_id = " YOUR_CLIENT_ID" ,
2829 client_secret = " YOUR_CLIENT_SECRET" ,
2930)
3031client.accounts.create(
31- project_id = " project_id" ,
3232 app_slug = " app_slug" ,
3333 cfmap_json = " cfmap_json" ,
3434 connect_token = " connect_token" ,
@@ -45,6 +45,7 @@ import asyncio
4545from pipedream import AsyncPipedream
4646
4747client = AsyncPipedream(
48+ project_id = " YOUR_PROJECT_ID" ,
4849 x_pd_environment = " YOUR_X_PD_ENVIRONMENT" ,
4950 client_id = " YOUR_CLIENT_ID" ,
5051 client_secret = " YOUR_CLIENT_SECRET" ,
@@ -53,7 +54,6 @@ client = AsyncPipedream(
5354
5455async def main () -> None :
5556 await client.accounts.create(
56- project_id = " project_id" ,
5757 app_slug = " app_slug" ,
5858 cfmap_json = " cfmap_json" ,
5959 connect_token = " connect_token" ,
@@ -86,6 +86,7 @@ Paginated requests will return a `SyncPager` or `AsyncPager`, which can be used
8686from pipedream import Pipedream
8787
8888client = Pipedream(
89+ project_id = " YOUR_PROJECT_ID" ,
8990 x_pd_environment = " YOUR_X_PD_ENVIRONMENT" ,
9091 client_id = " YOUR_CLIENT_ID" ,
9192 client_secret = " YOUR_CLIENT_SECRET" ,
0 commit comments