irccex- fantasy cryptocurrency exchange for irc |
git clone git://git.acid.vegas/irccex.git |
Log | Files | Refs | Archive | README | LICENSE |
irccex.py (580B)
1 #!/usr/bin/env python 2 # IRC Cryptocurrency Exchange (IRCCEX) - Developed by acidvegas in Python (https://git.acid.vegas/irccex) 3 # irccex.py 4 5 import os 6 import sys 7 8 sys.dont_write_bytecode = True 9 os.chdir(sys.path[0] or '.') 10 sys.path += ('core',) 11 12 print('#'*56) 13 print('#{0}#'.format(''.center(54))) 14 print('#{0}#'.format('IRC Cryptocurrency Exchange (IRCCEX)'.center(54))) 15 print('#{0}#'.format('Developed by acidvegas in Python'.center(54))) 16 print('#{0}#'.format('https://git.acid.vegas/irccex'.center(54))) 17 print('#{0}#'.format(''.center(54))) 18 print('#'*56) 19 import irc 20 irc.Bot.run()