Unbreak modules
This commit is contained in:
2
pyircbot/modules/AttributeStorage.py
Normal file → Executable file
2
pyircbot/modules/AttributeStorage.py
Normal file → Executable file
@@ -7,7 +7,7 @@
|
||||
|
||||
"""
|
||||
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
|
||||
class AttributeStorage(ModuleBase):
|
||||
def __init__(self, bot, moduleName):
|
||||
|
||||
2
pyircbot/modules/AttributeStorageLite.py
Normal file → Executable file
2
pyircbot/modules/AttributeStorageLite.py
Normal file → Executable file
@@ -7,7 +7,7 @@
|
||||
|
||||
"""
|
||||
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
|
||||
class AttributeStorageLite(ModuleBase):
|
||||
def __init__(self, bot, moduleName):
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
"""
|
||||
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
from requests import get
|
||||
from time import time
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
import datetime
|
||||
import time
|
||||
import math
|
||||
|
||||
2
pyircbot/modules/CryptoWallet.py
Normal file → Executable file
2
pyircbot/modules/CryptoWallet.py
Normal file → Executable file
@@ -7,7 +7,7 @@
|
||||
|
||||
"""
|
||||
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
import time
|
||||
import hashlib
|
||||
|
||||
|
||||
2
pyircbot/modules/CryptoWalletRPC.py
Normal file → Executable file
2
pyircbot/modules/CryptoWalletRPC.py
Normal file → Executable file
@@ -7,7 +7,7 @@
|
||||
|
||||
"""
|
||||
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
from bitcoinrpc.authproxy import AuthServiceProxy
|
||||
from math import floor
|
||||
from threading import Thread
|
||||
|
||||
2
pyircbot/modules/DogeDice.py
Normal file → Executable file
2
pyircbot/modules/DogeDice.py
Normal file → Executable file
@@ -7,7 +7,7 @@
|
||||
|
||||
"""
|
||||
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
import random
|
||||
import yaml
|
||||
import os
|
||||
|
||||
2
pyircbot/modules/DogeRPC.py
Normal file → Executable file
2
pyircbot/modules/DogeRPC.py
Normal file → Executable file
@@ -7,7 +7,7 @@
|
||||
|
||||
"""
|
||||
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
from bitcoinrpc.authproxy import AuthServiceProxy
|
||||
|
||||
class DogeRPC(ModuleBase):
|
||||
|
||||
2
pyircbot/modules/DogeScramble.py
Normal file → Executable file
2
pyircbot/modules/DogeScramble.py
Normal file → Executable file
@@ -7,7 +7,7 @@
|
||||
|
||||
"""
|
||||
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
import random
|
||||
import yaml
|
||||
import os
|
||||
|
||||
2
pyircbot/modules/DogeWallet.py
Normal file → Executable file
2
pyircbot/modules/DogeWallet.py
Normal file → Executable file
@@ -7,7 +7,7 @@
|
||||
|
||||
"""
|
||||
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
import time
|
||||
import hashlib
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
"""
|
||||
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
import time
|
||||
import yaml
|
||||
import random
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"""
|
||||
|
||||
#!/usr/bin/env python
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
|
||||
class Error(ModuleBase):
|
||||
def __init__(self, bot, moduleName):
|
||||
|
||||
2
pyircbot/modules/GameBase.py
Normal file → Executable file
2
pyircbot/modules/GameBase.py
Normal file → Executable file
@@ -7,7 +7,7 @@
|
||||
|
||||
"""
|
||||
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
import random
|
||||
import yaml
|
||||
import os
|
||||
|
||||
2
pyircbot/modules/Inventory.py
Normal file → Executable file
2
pyircbot/modules/Inventory.py
Normal file → Executable file
@@ -7,7 +7,7 @@
|
||||
|
||||
"""
|
||||
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
from datetime import datetime
|
||||
|
||||
class Inventory(ModuleBase):
|
||||
|
||||
2
pyircbot/modules/LinkTitler.py
Normal file → Executable file
2
pyircbot/modules/LinkTitler.py
Normal file → Executable file
@@ -7,7 +7,7 @@
|
||||
|
||||
"""
|
||||
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
from requests import get
|
||||
import re
|
||||
import time
|
||||
|
||||
2
pyircbot/modules/MySQL.py
Normal file → Executable file
2
pyircbot/modules/MySQL.py
Normal file → Executable file
@@ -7,7 +7,7 @@
|
||||
|
||||
"""
|
||||
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
import sys
|
||||
|
||||
try:
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
"""
|
||||
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
from time import time
|
||||
from requests import get
|
||||
from lxml import etree
|
||||
|
||||
2
pyircbot/modules/NickUser.py
Normal file → Executable file
2
pyircbot/modules/NickUser.py
Normal file → Executable file
@@ -7,7 +7,7 @@
|
||||
|
||||
"""
|
||||
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
import time
|
||||
import hashlib
|
||||
|
||||
|
||||
2
pyircbot/modules/RandQuote.py
Normal file → Executable file
2
pyircbot/modules/RandQuote.py
Normal file → Executable file
@@ -7,7 +7,7 @@
|
||||
|
||||
"""
|
||||
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
from datetime import datetime
|
||||
|
||||
class RandQuote(ModuleBase):
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
"""
|
||||
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
from datetime import datetime,timedelta
|
||||
from threading import Thread
|
||||
from time import sleep
|
||||
|
||||
2
pyircbot/modules/SQLite.py
Normal file → Executable file
2
pyircbot/modules/SQLite.py
Normal file → Executable file
@@ -7,7 +7,7 @@
|
||||
|
||||
"""
|
||||
|
||||
from modulebase import ModuleBase
|
||||
from pyircbot.modulebase import ModuleBase
|
||||
import sys
|
||||
import sqlite3
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
"""
|
||||
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
import random
|
||||
import yaml
|
||||
import os
|
||||
|
||||
2
pyircbot/modules/Seen.py
Normal file → Executable file
2
pyircbot/modules/Seen.py
Normal file → Executable file
@@ -7,7 +7,7 @@
|
||||
|
||||
"""
|
||||
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
import sqlite3
|
||||
import time
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
"""
|
||||
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
import datetime
|
||||
from time import mktime
|
||||
|
||||
|
||||
2
pyircbot/modules/Urban.py
Normal file → Executable file
2
pyircbot/modules/Urban.py
Normal file → Executable file
@@ -7,7 +7,7 @@
|
||||
|
||||
"""
|
||||
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
import json
|
||||
from requests import get
|
||||
|
||||
|
||||
2
pyircbot/modules/Weather.py
Normal file → Executable file
2
pyircbot/modules/Weather.py
Normal file → Executable file
@@ -7,7 +7,7 @@
|
||||
|
||||
"""
|
||||
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
from requests import get
|
||||
from urllib.parse import urlencode
|
||||
|
||||
|
||||
2
pyircbot/modules/Youtube.py
Normal file → Executable file
2
pyircbot/modules/Youtube.py
Normal file → Executable file
@@ -7,7 +7,7 @@
|
||||
|
||||
"""
|
||||
|
||||
from modulebase import ModuleBase,ModuleHook
|
||||
from pyircbot.modulebase import ModuleBase,ModuleHook
|
||||
from requests import get
|
||||
import time
|
||||
|
||||
|
||||
Reference in New Issue
Block a user