https://github.com/starrfox/uwuify
Command line uwuification
https://github.com/starrfox/uwuify
Last synced: 8 months ago
JSON representation
Command line uwuification
- Host: GitHub
- URL: https://github.com/starrfox/uwuify
- Owner: StarrFox
- License: mit
- Created: 2020-03-09T21:11:56.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-04-13T17:53:07.000Z (about 2 years ago)
- Last Synced: 2024-04-14T08:06:49.554Z (about 2 years ago)
- Language: Python
- Homepage:
- Size: 123 KB
- Stars: 20
- Watchers: 3
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# uwuify

[](https://github.com/psf/black)
Command line uwuification
# Installation
```shell
pip install uwuify
```
# Usage
```shell
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
```python
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
```