Metadata-Version: 2.2
Name: TurboCLI
Version: 0.2.1
Summary: A simple Python package for CLI tools
Home-page: https://github.com/TheDoubleMix/cli
Author: Juho Jokisalo
Author-email: xboxj2012@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-python
Dynamic: summary

# TurboCLI

A simple Python package for displaying CLI Tools.

## Features:
- Show data as a hex editor.

## Example Usage:

```python
from turbocli import hexdump

# Example byte sequence (DEADBEEF)
data = b'\xde\xad\xbe\xef'

# Display the hex dump
print(hexdump(data))
```
### Expected Output:
```
00000000  DE AD BE EF                                      ....
```
This will print out a hex dump where each line contains the offset (starting at `00000000`), the hexadecimal representation of the bytes, and their corresponding ASCII characters (non-printable characters are displayed as a dot).

## Lisence:
This project uses the MIT License.
##
Thank you for using the CLI Python module! 🎉
