Metadata-Version: 2.4
Name: tooth-python
Version: 0.1.2
Summary: Generating text.
Maintainer: Cheesecake2960
License-Expression: MIT
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
`tooth-python` is a very basic library that allows you to generate text with basic functions.

# 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"
])
```
