зеркало из https://github.com/nextcloud/news.git
remove fixed todos
This commit is contained in:
Родитель
97e3c59c7a
Коммит
708f71beaa
|
@ -50,10 +50,6 @@ class Updater:
|
||||||
|
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
# TODO: make a request to the cleanup route
|
|
||||||
# TODO: get all feeds and update them in seperate threads
|
|
||||||
|
|
||||||
# TODO: also check for the other URLErrors
|
|
||||||
try:
|
try:
|
||||||
auth = HTTPPasswordMgrWithDefaultRealm()
|
auth = HTTPPasswordMgrWithDefaultRealm()
|
||||||
auth.add_password(None, self.base_url, self.user, self.password)
|
auth.add_password(None, self.base_url, self.user, self.password)
|
||||||
|
@ -63,8 +59,10 @@ class Updater:
|
||||||
urlopen(self.cleanup_url)
|
urlopen(self.cleanup_url)
|
||||||
feeds = urlopen(self.all_feeds_url).read()
|
feeds = urlopen(self.all_feeds_url).read()
|
||||||
|
|
||||||
print(feeds)
|
# TODO: parse feeds and thread the requests
|
||||||
|
|
||||||
|
|
||||||
|
# TODO: also check for the other URLErrors
|
||||||
except (ValueError, HTTPError):
|
except (ValueError, HTTPError):
|
||||||
print('%s is either not valid or does not exist' % self.base_url)
|
print('%s is either not valid or does not exist' % self.base_url)
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
Загрузка…
Ссылка в новой задаче