Mercurial > hg > config
view python/lolspeak.py @ 694:ebca6d85213a
File "/usr/lib/python3/dist-packages/IPython/config/__init__.py", line 16, in <module>
from .application import *
File "/usr/lib/python3/dist-packages/IPython/config/application.py", line 31, in <module>
from IPython.config.configurable import SingletonConfigurable
File "/usr/lib/python3/dist-packages/IPython/config/configurable.py", line 33, in <module>
from IPython.utils.text import indent, wrap_paragraphs
File "/usr/lib/python3/dist-packages/IPython/utils/text.py", line 28, in <module>
from IPython.external.path import path
File "/usr/lib/python3/dist-packages/IPython/external/path/__init__.py", line 2, in <module>
from path import *
File "/home/jhammel/python/path.py", line 25
print root(path)
^
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Wed, 09 Jul 2014 16:26:49 -0700 |
parents | 89121bfe12ff |
children |
line wrap: on
line source
#!/usr/bin/env python loldict = { 'am': 'is', 'and': 'n', 'are': 'r', 'ate': 'eated', 'back': 'bak', 'business': 'bizness', 'bye': 'bai', 'cat': 'kitteh', 'cheeseburger': 'cheezburger', 'cute': 'kyooot', 'food': 'foodz', 'fucking': 'fuxing', 'have': 'has', 'help': 'halp', 'hi': 'hai', 'is': 'iz', 'kitty': 'kitteh', 'later': 'l8r', 'making': 'makin', 'means': 'meens', 'more': 'moar', 'news': 'newz', 'please': 'plz', 'power': 'powr', 'saturday': 'caturday', 'says': 'sez', 'takes': 'takez', 'thanks': 'kthx', 'time': 'tiem', 'the': 'teh', 'there': 'thar', 'this': 'dis', 'towel': 'towul', 'uses': 'uzes', 'young': 'yung', 'you': 'u', 'your': 'ur' } def translate(string): retval = [] for word in string.split(): retval.append(loldict.get(word.lower(), word)) return ' '.join(retval) if __name__ == '__main__': import sys if sys.argv[1:]: print translate(' '.join(sys.argv[1:])) else: print translate(sys.stdin.read())