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-11-12 14:11:59 -05:00
commit 44d98cec0d
No known key found for this signature in database
GPG key ID: BC58C09870A63E59

View file

@ -41,6 +41,7 @@ from utils import utils as u
async def query_kheina(url):
try:
content = await u.fetch('https://kheina.com', params={'url': url}, text=True)
for e in ('"', '''):
@ -76,8 +77,12 @@ async def query_kheina(url):
return result
except Exception:
return False
async def query_saucenao(url):
try:
content = await u.fetch(
'https://saucenao.com/search.php',
params={'url': url, 'api_key': u.config['saucenao_api'], 'output_type': 2},
@ -105,8 +110,7 @@ async def query_saucenao(url):
for e in (
'author_name',
'member_name',
'creator'
):
'creator'):
if e in match['data']:
artist = match['data'][e]
break
@ -121,6 +125,9 @@ async def query_saucenao(url):
return result
except Exception:
return False
async def get_post(url):
try: