Metadata-Version: 2.4
Name: pymudata
Version: 1.0.0
Summary: Tiny offline helper to copy stored code snippets to the clipboard.
Author: pymudata
License: MIT
Project-URL: Homepage, https://example.com/pymudata
Keywords: clipboard,snippets,offline,utility
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# pymudata

A tiny, offline helper that copies stored code snippets to your clipboard.

Internet is only needed **once**, to install. After that everything is bundled
inside the package and works completely offline. Nothing is written to your
working directory.

## Install

```bash
pip install pymudata
```

## Use

```python
import pymudata

pymudata.copy(9)      # copy snippet 9 to the clipboard, then Ctrl+V
pymudata.copy(10)     # copy snippet 10
pymudata.show(3)      # just print snippet 3 (no clipboard)
pymudata.list()       # show available snippet numbers
code = pymudata.get(5)  # return snippet 5 as a string, no output
```

Numbering: `1`-`9` map to snippets 1-9, `10`-`12` map to snippets 10-12.

### Notes

- Works in plain Python, the REPL, and a local Jupyter notebook.
- The clipboard backend is pure standard library (Win32 via `ctypes`,
  `clip`/`pbcopy`/`xclip`/`wl-copy`, or `tkinter`) - no extra dependencies.
- If the clipboard cannot be reached (for example a remote kernel), the snippet
  is printed instead so you can copy it manually. Indentation is preserved
  exactly, so pasted code runs as-is.
- Set `pymudata.QUIET = True` to silence the confirmation message.
```python
import pymudata
pymudata.QUIET = True
pymudata.copy(9)
```
```
