-
Notifications
You must be signed in to change notification settings - Fork 14
/
rss_capturer.py
executable file
·77 lines (61 loc) · 2.29 KB
/
rss_capturer.py
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/python
import Socrata
import ConfigParser
import sys
import urllib
import time
import feedparser
from xml.dom import minidom
Socrata.DEBUG=True
REDDIT_RSS = "http://www.reddit.com/.rss"
def create_dataset_with_columns(dataset, title = 'RSS Feed Dataset', description = ''):
"""Creates a new Socrata dataset with columns for an RSS feed"""
try:
dataset.create(title, description)
except Socrata.DuplicateDatasetError:
print "This dataset already exists."
return False
dataset.add_column('Title', '', 'text', False, False, 300)
dataset.add_column('URL', '', 'url', False, False, 300)
dataset.add_column('Date', '', 'date')
return
if __name__ == "__main__":
# Default to Reddit for an example
feed_url = REDDIT_RSS
# Else take their feed from command line args
if len(sys.argv) > 1:
feed_url = sys.argv[1]
print "Downloading RSS feed from " + str(feed_url)
rss = feedparser.parse(feed_url)
cfg = ConfigParser.ConfigParser()
cfg.read('socrata.cfg')
host = cfg.get('server', 'host')
username = cfg.get('credentials', 'user')
password = cfg.get('credentials', 'password')
app_token = cfg.get('credentials', 'app_token')
dataset = Socrata.Dataset( host, username, password, app_token)
print "Searching for existing dataset"
existing = dataset.find_datasets({'q':'RSS Feed Dataset',
'for_user': dataset.username})
if existing['count'] > 0:
print "Dataset exists, using it"
dataset.use_existing(existing['results'][0]['id'])
else:
print "Creating dataset in Socrata"
create_dataset_with_columns(dataset)
if dataset:
batch_requests = []
# Extract relevant information
for item in rss.entries:
data = {}
data['Title'] = item.title
data['URL'] = item.link
if hasattr(item,'date_parsed'):
data['Date'] = time.strftime("%m/%d/%Y %H:%M:%S", item.date_parsed)
batch_requests.append(dataset.add_row_delayed(data))
dataset._batch(batch_requests)
print "You can now view the dataset:"
print dataset.short_url()
else:
print "There was an error creating your dataset."
print "\nFinished"