Metadata-Version: 2.1
Name: string-py
Version: 0.0.2
Summary: Utils for strings in python
Author: BabyEntchen
Author-email: <baby_entchen@web.de>
Keywords: python,string,strings,utils,string utils,random,random strings,formatting,formatter
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown

# string_py


[![PyPI](https://img.shields.io/pypi/v/string-py?style=flat-square)](https://pypi.org/project/string-py/)

A Python package to simplify working with strings

## Installation

To install the library directly from PyPI you can just run the following command:
```shell
# Linux/macOS
python3 -m pip install -U string-py

# Windows
py -3 -m pip install -U string-py
```


## Format Example

```python
from string_py import Format

print(Format.align(values={"Username:": "John", "Register Date:": "01.01.2001"}))
```
```
Username:        John
Register Date:   01.01.2001
```
## Manipulation Example
```python
from string_py import Str

print(Str("Hello World!").first(5))
```
```
Hello
```
## Printer Example
```python
from string_py import Printer

print = Printer()

print.time("Hello World!")
```
```
[04.04 | 03:11:07] Hello World!
```
