A simple RSS Reader using Python Django
RSS-Reader is a web based platform that allows users to get the live rss feed from the entered URL.
Users can Enter the link on https://rssreaderdemo.herokuapp.com/ and the get the list of all feeds. Then Users can also click on individual feed to get the details of feed.
- Backend - Python/Django
- Database - SQLite3 (Not Used)
- Frontend - Bootstrap, HTML, CSS, JavaScript, Jquery (Free package from creative tim)
- Hosted on - Heroku
- website - https://rssreaderdemo.herokuapp.com/
- Create a virtual environmnet and activate
$ virtualenv venv
$ source venv/bin/activate
- Clone Project from https://github.com/wasi-m/rss_reader.git
$ git clone https://github.com/wasi-m/rss_reader.git
- Install all project dependency from requirements.txt file
$ pip install -r requirements.txt
- Go to project folder and run the Django makemigrations and migrate
$ python manage.py makemigrations
$ python manage.py migrate
- Go to project folder and run Django development server
$ python manage.py runserver
- Open http://127.0.0.1:8000 in browser
- Creating Users for tracking and saving the RSS links.
- Bookmarking the RSS feeds.