Michel Roux
320207e3b0
All checks were successful
continuous-integration/drone/push Build is passing
13 lines
473 B
Python
13 lines
473 B
Python
from pynyaata.connectors.core import curl_content
|
|
from pynyaata.models import AnimeLink
|
|
|
|
links = AnimeLink.query.all()
|
|
|
|
for link in links:
|
|
html = curl_content(link.link, debug=False)
|
|
|
|
if html['http_code'] != 200 and html['http_code'] != 500:
|
|
print('(%d) %s %s : %s' % (html['http_code'], link.title.name, link.season, link.link))
|
|
elif 'darkgray' in str(html['output']):
|
|
print('(darkgray) %s %s : %s' % (link.title.name, link.season, link.link))
|