Skip to content

Commit

Permalink
Add User-Agent header for RSS feed requests (#94)
Browse files Browse the repository at this point in the history
* Add User-Agent header for RSS feed requests

Fixes #93

* Update requirements.txt
  • Loading branch information
j6k4m8 authored Oct 4, 2024
1 parent 14cf38c commit 525f310
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion goosepaper/storyprovider/rss.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def get_stories(self, limit: int = 5, **kwargs) -> List[Story]:
if self._since is not None and date < self._since:
continue

req = requests.get(entry["link"])
req = requests.get(entry["link"], headers={'User-Agent': 'goosepaper/0.7.1'})
# Source is the URL root:
source = urllib.parse.urlparse(entry["link"]).netloc
if not req.ok:
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ feedparser

# for wikipedia stories:
bs4
lxml
lxml[html_clean]

# for rendering:
WeasyPrint
Expand All @@ -18,4 +18,4 @@ ebooklib
readability-lxml

# for sending to remarkable:
git+https://github.com/j6k4m8/rmapy
git+https://github.com/j6k4m8/rmapy

0 comments on commit 525f310

Please sign in to comment.