Metadata-Version: 2.4
Name: moutils
Version: 0.3.9
License-File: LICENSE
Requires-Dist: anywidget
Provides-Extra: dev
Requires-Dist: marimo; extra == 'dev'
Description-Content-Type: text/markdown

# moutils

Utility functions used in [marimo](https://github.com/marimo-team/marimo).

> [!NOTE]
> This is a community led effort and not actively prioritized by the core marimo team.

## Installation

```sh
pip install moutils
```

or with [uv](https://github.com/astral-sh/uv):

```sh
uv add moutils
```

## Included

### URLHash

Widget for interacting with URL hash. Allows you to get and set the hash portion of the URL.

### URLPath

Widget for interacting with URL path. Allows you to get and set the current URL path.

### DOMQuery

Widget for querying DOM elements. Use CSS selectors to find and interact with elements on the page.

### CookieManager

Widget for managing browser cookies. Get, set, and monitor browser cookies.

### StorageItem

Widget for interacting with browser storage (local/session). Access and manipulate data in browser's localStorage or sessionStorage.

### Slot

Widget for creating a slot that can contain HTML and handle DOM events. Supports a wide range of events:

- Mouse events (click, hover, etc.)
- Keyboard events
- Form events
- Drag and drop
- Touch events
- Pointer events
- Scroll events
- Clipboard events
- Animation and transition events

### CopyToClipboard

Widget for copying text to clipboard. Provides a button to copy text and shows success feedback.

### ShellWidget

Interactive shell command widget for running terminal commands in notebooks. Features:

- Real-time output streaming
- Cross-platform support (Windows, macOS, Linux)
- Working directory specification
- Asynchronous execution
- Error handling and status reporting

Use the convenience function `shell()` or the `ShellWidget` class directly:

```python
from moutils import shell

# Simple command
shell("ls -la")

# With working directory
shell("npm install", working_directory="./frontend")
```

## Development

We use [uv](https://github.com/astral-sh/uv) for development.

```sh
uv run marimo edit notebooks/example.py
```

### Installing pre-commit

```sh
uv tool install pre-commit
pre-commit
```

### Testing

```sh
uvx --with anywidget pytest tests
```
