Metadata-Version: 2.1
Name: password_credentials
Version: 0.0.6
Summary: Generate username and password credentials.
Home-page: https://github.com/SanteriHetekivi/password_credentials
Author: Santeri Hetekivi
Author-email: development@hetekivi.com
Project-URL: Bug Tracker, https://github.com/SanteriHetekivi/password_credentials/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE

# Password credentials.

Store and query for username and password.

## Install
```shell
pip install --upgrade password-credentials==0.0.4
```

## Usage
```python

# Import Credentials class
from password_credentials.credentials import Credentials

# Initiliase with username and password.
credentials: Credentials = Credentials(username="USERNAME", password="PASSWORD")

# Generate credentials from enviroment values or if not defined prompt user.
credentials: Credentials = Credentials.get(
    service="EXAMPLE"
)
```
