Scrapes weerverteller.nl daily and pushes new articles to Readwise Reader.
- On startup, scrapes the weerverteller.nl homepage for news articles (
/verhalen/). - Pushes new (unseen) articles to Readwise Reader via their API.
- Tracks seen URLs in a JSON file to avoid duplicates.
- Re-syncs every hour (configurable).
- Articles appear in your Readwise Reader Feed, tagged
weerverteller.
| Variable | Required | Default | Description |
|---|---|---|---|
READWISE_TOKEN |
yes | — | Readwise access token (get here) |
SCRAPE_INTERVAL_HOURS |
no | 1 |
Hours between syncs |
DATA_PATH |
no | /app/data |
Directory for seen URL tracking |
pip install -r requirements.txt
export READWISE_TOKEN=your_token_here
python main.pydocker build -t weerverteller-rss .
docker run -e READWISE_TOKEN=your_token -v weerverteller-data:/app/data weerverteller-rss