Metadata-Version: 2.4
Name: textual-reflect
Version: 0.1.0
Summary: A Textual widget for code reflection and introspection.
Author-email: Ismael Venegas Castelló <ismael.vc13337@gmail.com>
License: MIT
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: <4.0,>=3.9
Requires-Dist: textual>=6.4.0
Provides-Extra: dev
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: ruff; extra == 'dev'
Description-Content-Type: text/markdown

# Textual Reflect

A Textual widget for inspecting Python code reflection.

## Installation

```bash
$ uv pip install textual-reflect
```

## Usage

```python
from textual.app import App, ComposeResult
from textual_reflect import Reflector

class MyApp(App):
    def compose(self) -> ComposeResult:
        yield Reflector()  # Add widget

if __name__ == "__main__":
    app = MyApp()
    app.run()
```
