-
Notifications
You must be signed in to change notification settings - Fork 169
/
Copy pathlynda.py
48 lines (33 loc) · 1.06 KB
/
lynda.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
import os
import sys
import time
import feedparser
cwd = os.getcwd()
project_root = os.path.dirname(cwd)
sys.path.append(project_root)
from common.twitter_config import tweet_status
DEFAULT_GOBACK_HOURS = 24
NOW = time.localtime()
RSS = 'http://feeds.feedburner.com/lyndacom-new-releases'
SEC_IN_HOUR = 60 * 60
TWEET = 'New @lynda course: {} - {}'
def get_tweets(grep):
data = feedparser.parse(RSS)
for item in data['entries']:
url = item['id']
title = item['title']
published = item['published_parsed']
diff = abs(time.mktime(published) - time.mktime(NOW))
diff_hours = int(diff / (SEC_IN_HOUR))
if diff_hours > DEFAULT_GOBACK_HOURS:
continue
if grep.lower() not in title.lower():
continue
yield TWEET.format(title.replace(grep, '#'+grep), url)
if __name__ == '__main__':
if len(sys.argv) < 2:
print('Usage: $ python {} <grep>'.format(sys.argv[0]))
sys.exit(1)
grep = sys.argv[1].title()
for tweet in get_tweets(grep):
tweet_status(tweet)