Metadata-Version: 2.4
Name: clevertools
Version: 0.1.1
Summary: Clevertools is a utility library providing practical tools for common workflows.
Author: b7binw13
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/The-Binary-Labs-TBL/clevertools
Project-URL: Repository, https://github.com/The-Binary-Labs-TBL/clevertools.git
Project-URL: Issues, https://github.com/The-Binary-Labs-TBL/clevertools/issues
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: NOTICE
License-File: CONTRIBUTORS
Requires-Dist: pytest
Requires-Dist: twine
Requires-Dist: build
Dynamic: license-file

# clevertools

`clevertools` is a utility library providing practical tools for common
workflows.

## Public Tools

- plain-text file helpers
- masking for sensitive values
- global runtime configuration
- simple console and file logger setup

## Example

```python
from clevertools import mask, read

secret = mask("sk-example-secret-token", 3, 4)
content = read("example.txt")
```

## Project Goal

`clevertools` is intentionally compact. It focuses on practical helpers for
everyday workflows without introducing a large framework or unnecessary
abstraction.

## Documentation

- Start here: [docs/README.md](./docs/README.md)
- Getting started: [docs/getting-started/README.md](./docs/getting-started/README.md)
- Reference: [docs/reference/README.md](./docs/reference/README.md)

## Requirements

- Python `>=3.10`
