Command line uwuification
pip install uwuify
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