https://github.com/dev-ritik/flipkart-price-tracker
Flipkart Price Tracker with RSS
https://github.com/dev-ritik/flipkart-price-tracker
Last synced: about 2 months ago
JSON representation
Flipkart Price Tracker with RSS
- Host: GitHub
- URL: https://github.com/dev-ritik/flipkart-price-tracker
- Owner: dev-ritik
- Created: 2020-11-14T19:30:38.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-20T09:00:52.000Z (over 4 years ago)
- Last Synced: 2025-01-30T13:26:09.626Z (4 months ago)
- Language: Python
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flipkart Price Tracker with RSS
There are some nice open source trackers available for Price Tracking Flipkart products, none of them generated an
RSS Feed.## Output
Atom-formatted web feed with product's price, image URL and title.## Inspiration
https://github.com/captn3m0/ideas#-amazon-price-tracker-with-rss_It would be great if a similar bridge for Flipkart is added and hosted for free somewhere!._ Till then, use a script
similar to the one added below for starting your RSS feed reader. For `newsboat`, it would be like:
```
newsboat() {
echo "Initializing background process"
/home/ritik/proj/flipkart_scraper/main.py > /dev/null 2>&1 &
sleep 1
command newsboat "$@"
echo "Exiting"
kill $!
}
```
in your rc file.The feed url will be of the form, `http://localhost:12564/flipkart?link=`
_Add extra param for adding constant data to feed_. Example:
`http://localhost:12564/flipkart?link=?my_price=1000`
This wont do anything other than returning it with the feed. It can be used as a note! :p