23 lines
597 B
Python
23 lines
597 B
Python
#!/usr/bin/env python
|
|
# IRC Cryptocurrency Exchange (IRCCEX) - Developed by acidvegas in Python (https://acid.vegas/irccex)
|
|
# irccex.py
|
|
|
|
import os
|
|
import sys
|
|
import importlib
|
|
#import functions
|
|
from time import sleep
|
|
import asyncio
|
|
import logging
|
|
|
|
|
|
print('#'*56)
|
|
print('#{0}#'.format(''.center(54)))
|
|
print('#{0}#'.format('IRC Cryptocurrency Exchange (IRCCEX)'.center(54)))
|
|
print('#{0}#'.format('Developed by acidvegas in Python'.center(54)))
|
|
print('#{0}#'.format('https://acid.vegas/irccex'.center(54)))
|
|
print('#{0}#'.format(''.center(54)))
|
|
print('#'*56)
|
|
|
|
import irc
|
|
irc.run() |