https://github.com/tedder/crowdsupply-feed
crowdsupply.com news feeds for products
https://github.com/tedder/crowdsupply-feed
Last synced: 25 days ago
JSON representation
crowdsupply.com news feeds for products
- Host: GitHub
- URL: https://github.com/tedder/crowdsupply-feed
- Owner: tedder
- License: mit
- Created: 2017-12-04T22:10:58.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-10-10T18:02:39.000Z (10 months ago)
- Last Synced: 2025-11-04T02:26:50.778Z (9 months ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
crowdsupply.com product feeds, aka 'rss feeds'.
Announcement article: https://medium.com/@tedder42/newsfeed-for-crowd-supply-projects-b03730da03d0
The main 'browse' feed: https://dyn.tedder.me/rss/crowdsupply-browse.json
MIT licensed.
## docker-compose
```
crowdsupply:
build: ./crowdsupply-feed
container_name: crowdsupply
user: nobody
restart: unless-stopped
volumes:
- ./_aws_credentials:/.aws/credentials:ro
# 21600=6 hours
command: sh -c 'while true; do python3 scrape-browse.py; echo "scrape done"; sleep 21600; done'
environment:
- AWS_SHARED_CREDENTIALS_FILE=/.aws/credentials
```