Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 718 Bytes

File metadata and controls

25 lines (18 loc) · 718 Bytes

tooth-python

PyPI Downloads tooth-python is a very basic library that allows you to generate text with basic functions.

License

These codes are licensed under CC0.

CC0

How to use

from tooth import Tooth # Importing `Tooth` class

tooth = Tooth()

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

Customize vocabulary

tooth = Tooth(vocab=[
    "a", "b", "c"
])