Metadata-Version: 2.4
Name: chad-console
Version: 0.1.0
Summary: Intercepts print() and input() calls, routing them to a beautiful dark-mode GUI console.
Project-URL: Homepage, https://github.com/m-ali04/chad-console
Project-URL: Repository, https://github.com/m-ali04/chad-console
Project-URL: Issues, https://github.com/m-ali04/chad-console/issues
Author-email: m-ali04 <m-ali04@users.noreply.github.com>
License-Expression: MIT
License-File: LICENSE
Keywords: chad-console,console,customtkinter,developer-tools,gui,pretty-print
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
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: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: User Interfaces
Requires-Python: >=3.12
Requires-Dist: customtkinter>=5.2
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == 'dev'
Requires-Dist: ruff>=0.4; extra == 'dev'
Description-Content-Type: text/markdown

# ✦ ChadConsole

> Intercepts `print()` and `input()` — routes them to a beautiful dark-mode GUI.

## Installation

```bash
pip install chadconsole
```

## Usage

```python
import chadconsole  # That's it. All prints now go to the GUI.

print("Hello, world!")
print({"key": "value", "nested": [1, 2, 3]})

for i in range(5):
    print("*" * (i + 1))

name = input("What's your name? ")
print(f"Welcome, {name}!")
```

## Features

- **Zero config** — just `import chadconsole` at the top of your script
- **Auto type detection** — lists, dicts, tuples get special formatted rendering
- **Loop grouping** — `print()` calls inside `for` loops are automatically batched into a single visual block (bytecode-based detection, no `time.sleep()` needed)
- **Input interception** — `input()` calls display a floating entry field in the GUI
- **Dark neumorphic UI** — premium design with blue accents and monospace code rendering
- **Thread-safe** — your script runs normally; the GUI runs in a background thread

## License

MIT
