Metadata-Version: 2.3
Name: gpyg
Version: 0.3.0
Summary: A modern pythonic wrapper around GPG
Project-URL: Repository, https://github.com/iTecAI/GPyG
Project-URL: Documentation, https://itecai.github.io/GPyG
Author: Dax Harris
License: MIT License
        
        Copyright (c) 2024 Dax Harris
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: cryptography,gpg,pgp
Classifier: Programming Language :: Python
Requires-Python: >=3.12
Requires-Dist: pydantic
Requires-Dist: typing-extensions
Provides-Extra: dev
Requires-Dist: mkdocs; extra == 'dev'
Requires-Dist: mkdocstrings[python]; extra == 'dev'
Requires-Dist: pytest; extra == 'dev'
Description-Content-Type: text/markdown

# GPyG
A modern pythonic wrapper around GPG

### Installation

**Requirements:**

- At least Python 3.12
- A working GNUPG installation

GPyG can be installed from [PyPI](https://pypi.org/project/gpyg/) with the following command:

```bash
python -m pip install gpyg
```

### Basic Usage

```python
from gpyg import GPG

with GPG() as gpg:
    print(gpg.keys.list_keys())
    print(gpg.keys.list_keys()[0].export())
```

### Documentation

In-depth documentation and the API reference is hosted at [https://itecai.github.io/GPyG](https://itecai.github.io/GPyG)

