A simple LOLcat translator.
from translator import translate_english_to_lolcat
english = "I love cheeseburgers"
lolcat = translate_english_to_lolcat(english)
print(lolcat) # I liek cheezburgers
-
Clone this repository to your computer.
git clone https://github.com/tn3w/LOLcat.git
-
Navigate to the project directory.
cd LOLcat
-
Use the example code above.