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 0f383ea commit 76f5968Copy full SHA for 76f5968
example/example.py
@@ -15,6 +15,13 @@ async def main():
15
integration_version="v1.0.0",
16
)
17
18
+ vaults = await client.vaults.list_all()
19
+ async for vault in vaults:
20
+ print(vault.title)
21
+ items = await client.items.list_all(vault.id)
22
+ async for item in items:
23
+ print(item.title)
24
+
25
# Retrieves a secret from 1Password. Takes a secret reference as input and returns the secret to which it points.
26
value = await client.secrets.resolve("op://vault/item/field")
27
print(value)
0 commit comments