Skip to content

Commit 9c5de54

Browse files
author
jhengy
committed
Add new rss sources
1 parent 64c812b commit 9c5de54

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

main.py

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,45 @@ async def gather_articles(total_limit=500):
101101
'extract_type': 'index',
102102
'extract_params': {'css_selector': 'a[href].Story_link'},
103103
},
104+
{
105+
'source_url': "https://newsletter.pragmaticengineer.com/feed",
106+
'extract_type': 'rss',
107+
},
108+
{
109+
'source_url': "https://architecturenotes.co/feed",
110+
'extract_type': 'rss',
111+
},
104112
{
105113
'source_url': "https://simonwillison.net/atom/everything/",
106114
'extract_type': 'rss',
115+
},
116+
{
117+
'source_url': "https://airbnb.tech/feed/",
118+
'extract_type': 'rss',
119+
},
120+
{
121+
'source_url': "https://engineering.fb.com/feed/",
122+
'extract_type': 'rss',
123+
},
124+
{
125+
'source_url': "https://www.allthingsdistributed.com/atom.xml",
126+
'extract_type': 'rss',
127+
},
128+
{
129+
'source_url': "https://hackernoon.com/feed",
130+
'extract_type': 'rss',
131+
},
132+
{
133+
'source_url': "https://cacm.acm.org/section/blogcacm/feed/",
134+
'extract_type': 'rss',
135+
},
136+
{
137+
'source_url': "https://www.jeremykun.com/index.xml",
138+
'extract_type': 'rss',
139+
},
140+
{
141+
'source_url': "https://austinhenley.com/blog/feed.rss",
142+
'extract_type': 'rss',
107143
}
108144
]
109145

0 commit comments

Comments
 (0)