Web application to search for news and articles about cryptocurrency.
To get started with the application you need to complete following steps:
- Install dependencies:
$ pip install -r requirements.txt- Create
.envfile in root directory of the project and add thereSECRET_KEYandDB_URIvariables:
SECRET_KEY=your-secret-key
DB_URI=your-database-uri
- Create tables in your database:
CREATE TABLE NEWS(
id VARCHAR PRIMARY KEY,
url VARCHAR,
heading VARCHAR,
paragraph VARCHAR
)- Run application:
$ python3 src/app.pyIn order to use the application, simply enter the name of the cryptocurrency in the text field and click on the search button.