/web-scraper

A simple web app that use web scraping technique to get tech news.

Primary LanguagePython

web-scraper

A simple web app that use web scraping technique to get tech news.

Quick Start

Requirements

Basics

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

Get news

$ python manage.py capturar_noticias

Run the Application

$ 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