Metadata-Version: 2.1
Name: CrypticCreations
Version: 0.2.3
Summary: Create ciphers or random strings for DnD players to try and read aloud for the group.
Home-page: https://github.com/ClutchTech/CrypticCreations
Author: Clutch_Reboot
Author-email: clutchshadow26@gmail.com
License: GNU General Public License v2.0
Keywords: dnd ciphers random CrypticCreations
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE

# CrypticCreations
Create ciphers or random strings for DnD players to try and read aloud for the group.

## RandomCreation
### Usage
```python
import CrypticCreations

x = CrypticCreations.RandomCreation()
x.paragraph()
x.sprinkle_words(additional_words=['WORDs', 'THAT', "WONT", "CHANGE"])
print(f'{x.creation}')
```
### Sample Output
```text
Lzquwzyuwi zot rqieeuue etouzyij WORDs erpaxupeh. Nwpeb axfixse THAT Clgu zheihyaa mrdak jleasleu WONT gueoqovexa. Bcsuiraz iwfuzytek CHANGE emeoxawkja.
```

## CipherCreation
### Usage
```python
import CrypticCreations

x = CrypticCreations.CipherCreation(plaintext='Sentence to be enciphered.')
x.caeser(shift=3)
print(f"Message: {x.plaintext}")
print(f"Enciphered Message: {x.creation}")
```

### Sample Output
```text
Message: Sentence to be enciphered.
Enciphered Message: Vhqwhqfh wr eh hqflskhuhg.
```

