blob: db950aa0808fbbbcf3af2c7b227748fe867f683c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# fetch.py
#
# You can use this script with cron, for example:
# */30 * * * * cd ~/.pyaggr3g470r/ ; python fetch.py
# to fetch articles every 30 minutes.
import sys
import bootstrap
from pyaggr3g470r import crawler
from pyaggr3g470r.models import User
if __name__ == "__main__":
# Point of entry in execution mode
users, feed_id = [], None
try:
users = User.query.filter(User.id == int(sys.argv[1])).all()
except:
users = User.query.all()
finally:
if users == []:
users = User.query.all()
try:
feed_id = int(sys.argv[2])
except:
feed_id = None
for user in users:
if user.activation_key == "":
print("Fetching articles for " + user.nickname)
feed_getter = crawler.retrieve_feed(user, feed_id)
|