Metadata-Version: 2.1
Name: pypasswork
Version: 0.0.1
Summary: Passwork API library
Author-email: Khatsayuk Alexander <asand3r@ya.ru>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.30.0
Provides-Extra: dev
Requires-Dist: pre-commit; extra == "dev"

# Passwork python library
Library to interract with PassworkAPI with Python.

# Description
The library helps you to make requests to Passwork within your code using.
In current 0.0.1 version it can just find a password by name.

# Dependencies
* Python 3.10+
* requests 2.30.0+

# Examples
```python
from pypasswork import PassworkAPI

papi = PassworkAPI(url='https://passwork.domain.name', key='foobar', vault_name='Some vault')
password = papi.search_password('password_name')
print(password)
P@ssword
```
