uwuifys text


License
MIT
Install
pip install uwuify==0.0.1

Documentation

uwuify

PyPI - Downloads

Code style: black

Command line uwuification

Installation

pip install uwuify

Usage

uwuify hello
# outputs hewwo in console

uwuify how are you? --smiley --yu
# outputs how awe yoyu? with a random smiley

uwuify how are you? --smiley --yu --stutter
# outputs h-how awe yoyu? with a random smiley
# --stutter stutters every 4-th word

or

import uwuify

print(uwuify.uwu("hello"))
# hewwo

flags = uwuify.SMILEY | uwuify.YU
print(uwuify.uwu("how are you?", flags=flags))
# how awe yoyu? with a random smiley

flags = uwuify.SMILEY | uwuify.YU | uwuify.STUTTER
print(uwuify.uwu("how are you?", flags=flags))
# h-how awe yoyu? with a random smiley

flags = uwuify.SMILEY | uwuify.NOUWU
print(uwuify.uwu("how are you?", flags=flags))
# how are you? with a random smiley