Metadata-Version: 2.1
Name: CyberBook
Version: 0.0.6
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
import CyberBook

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

# NetworkPortals
print(f"{CyberBook.Identify.os_specs()}")

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

