Metadata-Version: 2.4
Name: pyestrombe
Version: 0.2.3
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 editdistance
pyestrombe jaccard
pyestrombe ngram
pyestrombe pagerank
pyestrombe preprocessing
pyestrombe xmlcsv
```

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/
  editdistance.txt
  jaccard.txt
  ngram.txt
  pagerank.txt
  preprocessing.txt
  xmlcsv.txt
```

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

---

## notes

* Made for exams (fast access)

---

done 👍
