https://github.com/wogong/raindrop-rss
A service that generates RSS feeds from Raindrop.io items.
https://github.com/wogong/raindrop-rss
feed raindrop rss
Last synced: 9 months ago
JSON representation
A service that generates RSS feeds from Raindrop.io items.
- Host: GitHub
- URL: https://github.com/wogong/raindrop-rss
- Owner: wogong
- License: mit
- Created: 2025-04-14T16:40:12.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-07-29T09:50:30.000Z (10 months ago)
- Last Synced: 2025-07-29T11:51:32.185Z (10 months ago)
- Topics: feed, raindrop, rss
- Language: Python
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Raindrop.io items to RSS
A service that generates RSS feeds from Raindrop.io items.
## Features
- Generate RSS feeds from all Raindrop.io items
- Optionally generate feeds for specific collections
- Docker support for easy deployment
## Configuration
Create a `.env` file based on `.env.example`:
```
ACCESS_TOKEN=xxxxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
PERPAGE=50
```
### Raindrop.io Access Token
To get your Raindrop.io access token:
1. Go to https://app.raindrop.io/settings/integrations
2. Create a new application
3. Copy the token
## Usage
### All Items Feed
Access all your Raindrop.io items:
```
# params are optional
GET /?perpage=50&page=0
```
## Podman or Docker
```
podman run -d --name raindrop-rss \
-p 5000:5000 \
-e ACCESS_TOKEN= \
-e PERPAGE=50 \
-e FLASK_ENV=production \
ghcr.io/wogong/raindrop-rss:latest
```
if you want to use `systemd` to manage this service, please reference to `raindrop-rss.container`.
## Environment Variables
- `ACCESS_TOKEN`: Raindrop.io access token, `Test token` actually, see reference.
- `PERPAGE`: Items per page (default: 50)
## Reference
- https://developer.raindrop.io/v1/authentication/token