@@ -23,12 +23,12 @@ Instantiate and use the client with the following:
23
23
from pipedream import Pipedream
24
24
25
25
client = Pipedream(
26
+ project_id = " YOUR_PROJECT_ID" ,
26
27
x_pd_environment = " YOUR_X_PD_ENVIRONMENT" ,
27
28
client_id = " YOUR_CLIENT_ID" ,
28
29
client_secret = " YOUR_CLIENT_SECRET" ,
29
30
)
30
31
client.accounts.create(
31
- project_id = " project_id" ,
32
32
app_slug = " app_slug" ,
33
33
cfmap_json = " cfmap_json" ,
34
34
connect_token = " connect_token" ,
@@ -45,6 +45,7 @@ import asyncio
45
45
from pipedream import AsyncPipedream
46
46
47
47
client = AsyncPipedream(
48
+ project_id = " YOUR_PROJECT_ID" ,
48
49
x_pd_environment = " YOUR_X_PD_ENVIRONMENT" ,
49
50
client_id = " YOUR_CLIENT_ID" ,
50
51
client_secret = " YOUR_CLIENT_SECRET" ,
@@ -53,7 +54,6 @@ client = AsyncPipedream(
53
54
54
55
async def main () -> None :
55
56
await client.accounts.create(
56
- project_id = " project_id" ,
57
57
app_slug = " app_slug" ,
58
58
cfmap_json = " cfmap_json" ,
59
59
connect_token = " connect_token" ,
@@ -86,6 +86,7 @@ Paginated requests will return a `SyncPager` or `AsyncPager`, which can be used
86
86
from pipedream import Pipedream
87
87
88
88
client = Pipedream(
89
+ project_id = " YOUR_PROJECT_ID" ,
89
90
x_pd_environment = " YOUR_X_PD_ENVIRONMENT" ,
90
91
client_id = " YOUR_CLIENT_ID" ,
91
92
client_secret = " YOUR_CLIENT_SECRET" ,
0 commit comments