Metadata-Version: 2.4
Name: inspectk
Version: 0.9.0
Summary: import inspectk; inspectk.go() -- to examine variables on the call stack with a tk window
Author-email: Lion Kimbro <lionkimbro@gmail.com>
License-Expression: GPL-3.0-or-later
Project-URL: Homepage, https://github.com/LionKimbro/inspectk
Project-URL: Bug Tracker, https://github.com/LionKimbro/inspectk/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: liontk
Dynamic: license-file

# Inspectk

**Release Date:** 2025-03-21
**Author:** Lion Kimbro
**Install:** `pip install inspectk`

## 🧠 What is Inspectk?

Inspectk opens a live Tkinter window to explore Python variables on the current call stack.

Just drop this into your code at any point:

```python
import inspectk
breakpoint()
inspectk.go()
```

You’ll get an interactive window showing local and global variables, help for the variables, and the interiors of the objects — super handy for debugging.

## 📸 Screenshot

<p align="center">
  <img src="src/screenshot.png" alt="Inspectk screenshot" width="600"/>
</p>

## 📦 Installation

```bash
pip install inspectk
```

## 💡 Use Case

Useful when you want to:
- Pause and peek inside objects at a breakpoint
- Read help on your objects
- Access a tkinter based GUI for debugging, outside of IDLE

---

Made with 🐍 + ❤️ by 🦁
