Metadata-Version: 2.4
Name: wolpie
Version: 0.2.2
Summary: I got tired of copy-pasting the same blocks of code from project to project. So I decided to create Wolpie as my own personal swiss army knife for Python development. The one package to rule them all... for my needs at least...
Keywords: tool
License-Expression: MIT
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: requests>=2.28.0
Requires-Python: >=3.11, <3.13
Project-URL: Changelog, https://github.com/johandielangman/wolpie/blob/main/CHANGELOG.md
Project-URL: Documentation, https://wolpie.com
Project-URL: Homepage, https://wolpie.com
Project-URL: Issues, https://github.com/johandielangman/wolpie/issues
Project-URL: Repository, https://github.com/johandielangman/wolpie
Description-Content-Type: text/markdown

<p align="center">
  <a href="https://github.com/johandielangman/wolpie">
    <img  loading="lazy" alt="Wolpie" src="https://github.com/johandielangman/wolpie/raw/main/docs/_static/img/banner.svg" width="100%"/>
  </a>
</p>

# Wolpie

[![Docs](https://img.shields.io/badge/docs-wolpie.com-blue)](https://johandielangman.github.io/wolpie/)
[![License](https://img.shields.io/badge/license-MIT-green)](https://opensource.org/licenses/MIT)
[![Python Version](https://img.shields.io/badge/python-3.11-blue)](https://www.python.org/downloads/)
[![Python Version](https://img.shields.io/badge/python-3.12-blue)](https://www.python.org/downloads/)
[![PyPI Version](https://img.shields.io/pypi/v/wolpie)](https://pypi.org/project/wolpie/)
[![codecov](https://codecov.io/github/Johandielangman/wolpie/graph/badge.svg?token=7WE2YCWG8T)](https://codecov.io/github/Johandielangman/wolpie)
[![Known Vulnerabilities](https://snyk.io/test/github/johandielangman/wolpie/badge.svg)](https://app.snyk.io/org/jghanekom2/project/c1f18c61-30d9-433a-a895-9e82c7dfa9cb)

Welcome to **Wolpie**! Like the banner says, I got tired of copy-pasting the same blocks of code from project to project. I already figured out how to do something the way I like, but now I have to do it all over again in a new project. I also frequently found myself installing packages that did one small thing I needed, but then I had to install a whole package just for that one thing. So I decided to create **Wolpie** as my own personal swiss army knife for Python development. The one package to rule them all... for my needs at least.

Over time, it will grow to include various utilities and tools that I find useful in my projects. Stay tuned!

## Installation

You can install Wolpie from PyPI:

```bash
pip install wolpie
```

## Quick Start

Here's a simple example of how to use Wolpie:

```python
from wolpie import pretty_str

# Use the pretty_str function
result = pretty_str("Hello world!", max_length=10)
print(result)  # Output: 'Hello w...'
```

---

Made with ♥ by [Johandielangman](https://github.com/johandielangman)
