A simple web app that use web scraping technique to get tech news.
- Python >= 3 and
pip
Create and activate a virtualenv
$ sudo pip install virtualenv # if not installed
$ virtualenv env
$ source env/bin/activate
Install the required packages
$ pip install -r requirements.txt
$ python manage.py capturar_noticias
$ python manage.py runserver
So access the application at the address http://localhost:8000/
Want to specify a different port?
$ python manage.py runserver -h 0.0.0.0 -p 8080