Metadata-Version: 2.4
Name: tooth-python
Version: 0.1.5
Summary: Generating text.
Maintainer: Cheesecake2960
License-Expression: CC0-1.0
Project-URL: Repository, https://github.com/Cheesecake2960/tooth.git
Project-URL: Issues, https://github.com/Cheesecake2960/tooth/issues
Keywords: generate,tooth
Classifier: Programming Language :: Python
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# tooth-python
[![PyPI Downloads](https://static.pepy.tech/personalized-badge/tooth-python?period=total&units=INTERNATIONAL_SYSTEM&left_color=BLACK&right_color=GREEN&left_text=downloads)](https://pepy.tech/projects/tooth-python)
`tooth-python` is a very basic library that allows you to generate text with basic functions.

## License

These codes are licensed under CC0.

[![CC0](http://i.creativecommons.org/p/zero/1.0/88x31.png "CC0")](http://creativecommons.org/publicdomain/zero/1.0/deed.ja)

# How to use
```python
from tooth import Tooth # Importing `Tooth` class

tooth = Tooth()

tooth.generate("Hello") # Returns 'Toothハ'
```

# Customize vocabulary
```python
tooth = Tooth(vocab=[
    "a", "b", "c"
])
```
