Metadata-Version: 2.4
Name: pyestrombe
Version: 0.2.6
Summary: A CLI tool to inspect practical source codes
Author-email: Developer <developer@example.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# pyestrombe

Quick tool to show practical code in the terminal.

---

## install

```bash
pip install pyestrombe
```

---

## use

List everything available:

```bash
pyestrombe list
```

Print a snippet by **name** (the command is the filename without extension, compared case-insensitively):

```bash
pyestrombe html
pyestrombe trans
```

If you still use numbered `m01.py`, `m02.py`, … under `modules/`, you can also run:

```bash
pyestrombe 1
pyestrombe 2
```

---

## structure

Snippets live as text files under `pyinspect_cli/modules/`, for example:

```
modules/
  html.text
  trans.txt
  coconut.zip
  rooftop.zip
  treasure_coin.zip
  zombie.zip
```

Add or rename `.txt` / `.text` files here; run `pyestrombe list` to see the current names.

You can also put `.zip` files in `pyinspect_cli/modules/`. If you run:

```bash
pyestrombe <zip_name>
```

it will extract into `./<zip_name>` (or you can pass an `output_dir` as a 2nd argument).

---

## notes

* Made for exams (fast access)

---

done 👍
