This program is used to convert normal text to sarcastic or mocking text by alternatively capitalizing characters.
For example, 'how are you doing bro?' becomes 'hOw aRe yOu dOiNg bRo?'.
This is particularly used for mocking someone in text messages and used for memes.
This program can be run directly to get a GUI for converting the desired text, or it can be used as a module for getting the converted text in a different python program.
-Types of variants available:
-
.py(Python Source Code) -
.exe(Windows Executable)
-Requirements for 1:
-
Latest version of Python
-
For Windows https://www.python.org/downloads/ is recommended
-
Add Python to PATH/Environment Variables during installation in Windows (recommended)
-Requirements for 2:
- Windows OS
-
Run the program directly to get a GUI for converting the desired text. Converted text can also be copied to the clipboard.
-
Can be used as a python module to get the converted text in a different python program. Example:
from sArCaStIc_Text_Converter import SarcasticText converted_text = SarcasticText.convert_text(input("Enter a string: ")) print(converted_text)
-
Use case 1 is available with both the .py and .exe files
-
Use case 2 is available only with the .py file
-
auto-py-to-exe is used for compiling the program to a .exe file
