Skip to content

Commit 7f411db

Browse files
🌿 Fern Regeneration -- July 7, 2025 (#4)
SDK regeneration Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com>
1 parent 4bd493f commit 7f411db

File tree

24 files changed

+321
-1254
lines changed

24 files changed

+321
-1254
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ Instantiate and use the client with the following:
2323
from pipedream import Pipedream
2424

2525
client = 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
)
3031
client.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
4545
from pipedream import AsyncPipedream
4646

4747
client = 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

5455
async 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
8686
from pipedream import Pipedream
8787

8888
client = 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

Comments
 (0)