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

15 lines
469 B
Python
Raw Normal View History

2019-12-11 18:40:35 +00:00
from config import app
2020-04-06 14:51:48 +00:00
from connectors import curl_content
2019-12-11 18:40:35 +00:00
from models import AnimeLink
app.config['SQLALCHEMY_ECHO'] = False
links = AnimeLink.query.all()
for link in links:
2020-04-06 14:51:48 +00:00
html = curl_content(link.link)
2019-12-11 18:40:35 +00:00
if html['http_code'] != 200:
2019-12-11 18:40:35 +00:00
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']):
2020-03-20 13:07:04 +00:00
print('(darkgray) %s %s : %s' % (link.title.name, link.season, link.link))