Metadata-Version: 2.4
Name: snick
Version: 3.1.0
Summary: Text gadgets that help with indentation and a few other gizmos
Author: Tucker Beck
Author-email: Tucker Beck <tucker.beck@gmail.com>
License-Expression: MIT
License-File: LICENSE.md
Requires-Dist: typing-extensions>=4.0 ; python_full_version < '3.12'
Requires-Python: >=3.10
Project-URL: homepage, https://github.com/dusktreader/snick
Project-URL: source, https://github.com/dusktreader/snick
Project-URL: changelog, https://github.com/dusktreader/snick/blob/main/CHANGELOG.md
Description-Content-Type: text/markdown

[![Latest Version](https://img.shields.io/pypi/v/snick?label=pypi-version&logo=python&style=plastic)](https://pypi.org/project/snick/)
[![Python Versions](https://img.shields.io/python/required-version-toml?tomlFilePath=https%3A%2F%2Fraw.githubusercontent.com%2Fdusktreader%2Fsnick%2Fmain%2Fpyproject.toml&style=plastic&logo=python&label=python-versions)](https://www.python.org/)
[![Build Status](https://github.com/dusktreader/snick/actions/workflows/main.yaml/badge.svg)](https://github.com/dusktreader/snick/actions/workflows/main.yaml)
[![Documentation Status](https://github.com/dusktreader/snick/actions/workflows/docs.yml/badge.svg)](https://dusktreader.github.io/snick/)


# snick

**Handy gadgets for taming indented text**

Stop wrestling with indented triple-quoted strings and awkward text formatting. snick makes it effortless to:

* **Dedent** triple-quoted strings while keeping your code beautifully indented
* **Build** complex multi-line output programmatically with the powerful `Conjoiner` class
* **Format** data structures with clean indentation and trailing commas
* **Clean up** terminal output by stripping ANSI codes and whitespace
* **Wrap and indent** long text blocks for logs and reports

All with **zero** dependencies.


## Quickstart

### Requirements

* Python 3.10 or greater


### Installation

Install the latest release from PyPI:

```bash
pip install snick
```


### Usage

Ever struggle with indented triple-quoted strings in your code?

```python
import snick

def my_function():
    return snick.dedent(
        """
        Oops! Something went wrong.
        Here's what happened:
            - The flux capacitor overheated
            - Time circuits malfunctioned
        Please try again later.
        """
    )

print(my_function())
```

Output:
```
Oops! Something went wrong.
Here's what happened:
    - The flux capacitor overheated
    - Time circuits malfunctioned
Please try again later.
```

Build complex output on the fly:

```python
def generate_report(name, tasks):
    report = snick.Conjoiner()
    report.add(f"Daily Report for {name}", blanks_after=1)

    if tasks:
        report.add("Completed Tasks:")
        report.extend(f"  ✓ {task}" for task in tasks)
    else:
        report.add("No tasks completed today.")

    return str(report)

print(generate_report("Alice", ["Fix bug #123", "Review PR #456", "Deploy v2.0"]))
```

Output:
```
Daily Report for Alice

Completed Tasks:
  ✓ Fix bug #123
  ✓ Review PR #456
  ✓ Deploy v2.0
```

Format data structures with proper indentation:

```python
data = {
    'user': 'bob',
    'permissions': ['read', 'write', 'execute'],
    'metadata': {'created': '2026-01-22', 'active': True}
}
print(snick.pretty_format(data))
```

Output:
```
{
  'user': 'bob',
  'permissions': [
    'read',
    'write',
    'execute',
  ],
  'metadata': {
    'created': '2026-01-22',
    'active': True,
  },
}
```


## Documentation

The complete documentation can be found at the [snick documentation page](https://dusktreader.github.io/snick/)


## What's with the name?

There's really no very good synonyms for the verb, 'indent'. However, there are several for the act of creating a small
dent in something. One of my favorites was 'snick'. It means "to cut a small notch or incision in". I think I'll use
that!
