Metadata-Version: 2.4
Name: textual-reflect
Version: 0.1.8
Summary: A Textual widget for code reflection and introspection.
Project-URL: Homepage, https://github.com/Ismael-VC/textual-reflect
Project-URL: Repository, https://github.com/Ismael-VC/textual-reflect.git
Project-URL: Bug Tracker, https://github.com/Ismael-VC/textual-reflect/issues
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.6.0
Provides-Extra: dev
Requires-Dist: black; extra == 'dev'
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: ruff; extra == 'dev'
Requires-Dist: textual-dev; extra == 'dev'
Provides-Extra: syntax
Requires-Dist: textual[syntax]>=6.4.0; extra == 'syntax'
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()
```

TODO


- animation top down

