1
0
Fork 0
mirror of https://github.com/myned/modufur.git synced 2024-11-01 21:02:38 +00:00

Merge branch 'dev'

This commit is contained in:
Myned 2019-10-01 21:59:42 -04:00
commit ba1be8a6c5
No known key found for this signature in database
GPG key ID: BC58C09870A63E59
3 changed files with 10 additions and 7 deletions

View file

@ -7,12 +7,10 @@ async def send_error(ctx, error):
await ctx.send('{}\n```\n{}```'.format(base, error))
# class NSFW(errext.CheckFailure):
# pass
class Remove(Exception):
pass
class SizeError(Exception):
pass
@ -46,6 +44,7 @@ class Save(Exception):
self.user = user
self.message = message
class GoTo(Exception):
pass

View file

@ -48,6 +48,10 @@ async def query_kheina(url):
content = re.sub('<a href="/cdn-cgi/l/email-protection".+</a>', '', content)
soup = BeautifulSoup(content, 'html5lib')
if soup.find('data', id='error'):
return False
results = soup.find('data', id='results').string
results = ast.literal_eval(results)
iqdbdata = soup.find('data', id='iqdbdata').string

View file

@ -24,7 +24,7 @@ except FileNotFoundError:
with open('config.json', 'w') as outfile:
jsn.dump({'client_id': 0, 'owner_id': 0, 'permissions': 126016,
'playing': 'a game', 'prefix': [',', 'm,'], 'selfbot': False, 'token': 'str', 'saucenao_api': 'str'}, outfile, indent=4, sort_keys=True)
print('FILE NOT FOUND : config.json created with abstract values. Restart run.py with correct values')
print('FILE NOT FOUND : config.json created with default values. Restart run.py with correct values')
def setdefault(filename, default=None, json=False):
@ -87,10 +87,10 @@ asession = aiohttp.ClientSession()
async def fetch(url, *, params={}, json=False, response=False, text=False):
async with asession.get(url, params=params, headers={
'User-Agent': 'Myned/Modufur (https://github.com/Myned/Modufur)'}, ssl=False) as r:
if json:
return await r.json()
elif response:
if response:
return r
elif json:
return await r.json()
elif text:
return await r.text()
else: