Metadata-Version: 2.1
Name: CyberBook
Version: 0.0.5
Summary: Cyber spellbook for developers.
Home-page: https://github.com/ClutchTech/CyberBook
Author: Clutch_Reboot
Author-email: clutchshadow26@gmail.com
License: GNU General Public License v3.0
Keywords: cyberbook DecoderRing tools
Platform: UNKNOWN
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE

# CyberBook
This is a collection of functions / tools that are used frequently enough to store them some place.

## Example

```python
from CyberBook.DecoderRing import DecoderRing
from CyberBook.modules import listener, wordlists

# CrypticItems
x = DecoderRing(data="test")
x.base64_encode()
print(f"{x.altered_data}")

# NetworkPortals
print(f"{listener.gather()}")

# FileSystemMagic
print(f'{wordlists.read_wordlist(file="someWords.lst")}')
```

