This repository has been archived on 2023-10-01. You can view files and clone it, but cannot push or open issues or pull requests.
PyNyaaTa/get404.py

22 lines
594 B
Python
Raw Normal View History

2020-04-24 19:01:44 +00:00
from pynyaata.connectors.core import curl_content
from pynyaata.models import AnimeLink
2019-12-11 18:40:35 +00:00
links = AnimeLink.query.all()
for link in links:
2021-12-16 22:32:51 +00:00
html = curl_content(link.link, debug=False, cloudflare=True)
2019-12-11 18:40:35 +00:00
2020-10-19 21:15:58 +00:00
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
))
2020-03-20 13:13:15 +00:00
elif 'darkgray' in str(html['output']):
print('(darkgray) %s %s : %s' % (
link.title.name,
link.season,
link.link
))