A password management library with AgileKeychain (1Password) support
Project description
A Python library for interacting with 1Password’s AgileKeychain password storage. Supports keychains created with 1Password 3 through 5.
Features
Unlocking/locking the keychain
Iterating over the keychain contents
Creating new keychain items
Editing keychain items
Planned
Removing keychain items with support for the trash functionality
Support for other password managers
Development status
Stable (master)
Unstable (develop)
License
Usage
from blimey import AgileKeychain
# Construct a keychain with either a path to an existing keychain,
# or the path to where you want your keychain created
agilekeychain = AgileKeychain('path/to/keychain.agilekeychain')
# If the keychain doesn't exist, initialise it with a master password
agilekeychain.initialise('super-secret-password')
# Existing (and newly crated) keychains are unlocked by calling the unlock method
agilekeychain.unlock('super-secret-password')
# You can change the master password by calling set_password
agilekeychain.set_password('even-more-secret-password')
# Call create_item to initialise a new item
item = agilekeychain.create_item()
# Some boilerplate is put in place automatically
print(item)
# AgileKeychainItem({'encrypted': {}, 'title': 'Untitled', 'createdAt': 1422404797.4550807,
# 'typeName': 'passwords.Password', 'keyID': 'ED7D542C2EA24479407D3D5CB35637D2', 'location': '',
# 'uuid': 'CBA45A598A4A63D4DDD3C78E2CC11666', 'locationKey': ''})
# The item behaves like any dictionary
item['title'] = 'Usage Example'
# Anything stored under 'encrypted' key will be encrypted on save
item['encrypted'] = {
'username': 'patrick',
'password': 'correct horse battery staple'
}
# To save an item, pass it to the save_item method
agilekeychain.save_item(item)
# To access keychain items, you can iterate over the keychain, ...
for item in agilekeychain:
print(item['title'])
# AgileKeychainItem({'encrypted': {}, 'title': 'Untitled', 'createdAt': 1422404797.4550807,
# 'typeName': 'passwords.Password', 'keyID': 'ED7D542C2EA24479407D3D5CB35637D2', 'updatedAt': 1422404900,
# 'location': '', 'uuid': 'CBA45A598A4A63D4DDD3C78E2CC11666', 'locationKey': ''})
# ... or access them directly by their UUID
print(agilekeychain['905B51856FD59A3C3AEF42A9FCE47E87'])
# When you are done you can lock the keychain by calling the lock method
agilekeychain.lock()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
blimey-0.9.4.tar.gz
(14.4 kB
view details)
File details
Details for the file blimey-0.9.4.tar.gz
.
File metadata
- Download URL: blimey-0.9.4.tar.gz
- Upload date:
- Size: 14.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 964dcb9f6586ba19a64f693bf52398eadfe8b0f96925a800c89349cdafdb1ffe |
|
MD5 | e6ae0f88c49f3f3b0033377dab11654b |
|
BLAKE2b-256 | b692f93fd2d6226bd82c5d349479aca451388bcce124ab7c763ca44101c07593 |