Skip to content

Commit 436d7c5

Browse files
authored
Add rss source for David Heinemeier Hansson blog
1 parent 9bd0b6a commit 436d7c5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/content_aggregator/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,10 @@ def __init__(self):
9090
'source_url': "https://feeds.feedburner.com/blogspot/RLXA",
9191
'extract_type': 'rss',
9292
},
93+
{
94+
'source_url': "https://world.hey.com/dhh/feed.atom",
95+
'extract_type': 'rss',
96+
},
9397
],
9498
'max_articles': int(os.getenv('ARTICLES_LIMIT', 500)),
9599
'retry_delay_seconds': 15
@@ -248,4 +252,4 @@ def run():
248252
sys.exit(1)
249253

250254
if __name__ == "__main__":
251-
main()
255+
main()

0 commit comments

Comments
 (0)