uwuifys text
Project description
uwuify
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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
uwuify-1.3.1.tar.gz
(4.0 kB
view hashes)
Built Distribution
uwuify-1.3.1-py3-none-any.whl
(5.0 kB
view hashes)