Metadata-Version: 2.1
Name: charred
Version: 0.0.15
Summary: Very simple char functions
Home-page: https://github.com/endormi
Author: Endormi
Author-email: contactendormi@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/markdown
Requires-Dist: wheel

# Charred

Very simple package with `is_same_char` and `repeat_char` methods.

I will probably add more later.

Install package:

```
pip install charred

# or pip3
```

Usage:

```
from charred import is_same_char, repeat_char

is_same_char('FF') # True
is_same_char('FD') # False

repeat_char('F', 6) # FFFFFF
```


