Metadata-Version: 2.1
Name: onepassword-keyring
Version: 0.1.0
Summary: Keyring backend reading password data from 1Password
Home-page: https://github.com/falling-springs/onepassword-keyring
Author: Falling Springs
Author-email: fallstosprings@gmail.com
License: MIT License
Keywords: onepassword keyring password
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE.md

# OnePassword Keyring

Implementation of the [Keyring](https://pypi.org/project/keyring/) backend code reading secrets from [1Password](https://1password.com) using [1password-cli](https://developer.1password.com/docs/cli/get-started/).

## Overview

The [Keyring](https://pypi.org/project/keyring/) python package provides a handy single point of entry for any secret holding system.

This projects allows Keyring to read secrets from 1Password, a multiplatform cloud password manager. It is based on and forked from [bitwarden-keyring](https://github.com/ewjoachim/bitwarden-keyring) by [ewjoachim](https://github.com/ewjoachim).

This backend assumes that it will be used in the context of a CLI application, and that it can communicate with the user using `sdtin`, `stdout` and `stderr`.

## Requirements

This project uses the official [1Password CLI](https://developer.1password.com/docs/cli/get-started/). You will need to install it and configure it before using this backend.

## Installation and configuration

```
pip install onepassword-keyring
```

## Usage

Use as a normal keyring backend. It is installed with priority 10 so it's likely going to be selected
first.

`onepassword-keyring` will automatically ask for credentials when needed.

## Caveats

This fork was made for personal use and is not guaranteed to work in all cases. Please use with caution, as I can't take responsibility for any issues that may arise from using this package.

`onepassword-keyring` was only tested with:
- macOS, using the `1password-cli` from `brew`

As mentioned, `onepassword-keyring` only works in the context of a CLI application with access to standard inputs and output.

## Licensing

`onepassword-keyring` is published under the terms of the [MIT License](LICENSE.md).

## Acknowledgment

This package is forked from and heavily based on [bitwarden-keyring](https://github.com/ewjoachim/bitwarden-keyring) by [ewjoachim](https://github.com/ewjoachim)
