You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the v0.1.2 release of the 1Password Python SDK.
2
-
3
-
This release includes:
4
-
* introduces support for tags, users can now create, update, and delete tags on 1Password Items.
5
-
* introduces a `Validate Secret Reference` function that will ensure the syntax of your secret reference is error free.
6
-
* Fields and Sections are now optional in `ItemCreateParams` and the user won't have to specify them if not needed anymore.
7
-
* The Python SDK will now be released on PyPi and users can now fetch the 1Password Python SDK by doing the following:
8
-
```
9
-
pip3 install onepassword-sdk
10
-
```
1
+
The v0.1.2 release of the Python SDK brings:
2
+
* Support for item tags. You can now create, get, and edit tags within your 1Password items using item CRUD functions.
3
+
* Support for fetching one-time password codes using secret references. You can now fetch your TOTP code with the `secrets.resolve` function, using a secret reference for the TOTP field in your item. For example: "op://vault/item/field?=attribute=totp"
4
+
* Support for validating secret references. You can now check that a secret reference is formatted correctly without having to resolve it or even authenticate, using the `validate_secret_reference` function.
5
+
* PyPI wheels for the Python SDK. You can now install the Python SDK via `pip3 install onepassword-sdk`
6
+
* Full support for optional values. You no longer have to manually set `details: None` or `section: None` when instantiating `ItemCreateParams`.
7
+
* Item creation now only requires specifying the vault ID, item category, and item title.
0 commit comments