You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Enso-Bot/venv/Lib/site-packages/owotext/owo.py

92 lines
1.6 KiB
Python

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import random
import argparse
import sys
prefixes = [
'<3 ',
'0w0 ',
'H-hewwo?? ',
'HIIII! ',
'Haiiii! ',
'Huohhhh. ',
'OWO ',
'OwO ',
'UwU '
]
suffixes = [
' :3',
' UwU',
' ÙωÙ',
' ʕʘ‿ʘʔ',
' ʕ•̫͡•ʔ',
' >_>',
' ^_^',
'..',
' Huoh.',
' ^-^',
' ;_;',
' ;-;',
' xD',
' x3',
' :D',
' :P',
' ;3',
' XDDD',
', fwendo',
' ㅇㅅㅇ',
' (人◕ω◕)',
'',
' Sigh.',
' x3',
' ._.',
' ( \'\')',
' (• o •)',
' (;ω;)',
' (◠‿◠✿)',
' >_<'
]
substitutions = {
'r': 'w',
'l': 'w',
'R': 'W',
'L': 'W',
'no': 'nu',
'has': 'haz',
'have': 'haz',
'you': 'uu',
'the ': 'da ',
'The ': 'Da '
}
class OwO:
def __init__(self, prefixes=prefixes, suffixes=suffixes, substitutions=substitutions):
self.prefixes = prefixes
self.suffixes = suffixes
self.substitutions = substitutions
def whatsthis(self, text: str):
for key, value in self.substitutions.items():
text = text.replace(key, value)
return random.choice(self.prefixes) + text + random.choice(suffixes)
def main(args=None):
parser = argparse.ArgumentParser(
description='A Python library for converting text strings into OwO',
epilog='https://github.com/DerpyChap/owotext')
parser.add_argument('text', type=str, nargs='*', help='The text to OwO', default=["Please give me some text to OwO"])
args = parser.parse_args()
text = ' '.join(args.text)
if not sys.stdin.isatty():
text = sys.stdin.read().rstrip()
o = OwO()
print(o.whatsthis(text))
if __name__ == '__main__':
main()