We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d836886 commit 9f978c8Copy full SHA for 9f978c8
examples/backup/with_application.py renamed to examples/snapshots/with_application.py
@@ -7,8 +7,7 @@
7
8
async def example() -> None:
9
app = await client.app('application_id')
10
- backup = await app.backup()
11
- print(backup.url) # https://squarecloud.app/dashboard/backup/f.zip
12
-
+ snapshot = await app.snapshot()
+ print(snapshot.url) # https://squarecloud.app/dashboard/backup/f.zip
13
14
asyncio.run(example())
examples/backup/with_client.py renamed to examples/snapshots/with_client.py
@@ -6,8 +6,8 @@
6
- backup = await client.backup('application_id')
+ snapshot = await client.snapshot('application_id')
0 commit comments