Metadata-Version: 2.1
Name: CoutureCypher
Version: 0.0.2
Summary: A Cypher
Author-email: Dominic Couture <d.paul.couture@gmail.com>
Project-URL: Homepage, https://github.com/mastermind-mayhem/CoutureCypher
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# CoutureCypher
A two stage encoder made with a mix of a caesar ciphers.

To initialize call the class with and object to either decrypt or encrypt

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install Couture-Cypher.

```bash
pip install Couture-Cypher
```

## Utilization

```python
from Couture-Cypher import *

# Initializes with an initial string
cipher = cypher('initial-string')

# returns decrypted variation of the initial string
cipher.decrypt()

# returns encrypted variation of the initial string
cipher.encrypt()
```


## License

[MIT](https://choosealicense.com/licenses/mit/)
