A simple news aggregation application
- Python
3.9+
- fastapi
0.68+
Note: Use a virtual environment or container for project isolation
git clone https://github.com/maaddae/news-aggregator.git
Step into the root of the application to create and activate the environment
python3 -m venv env
To activate run the below command
source env/bin/activate
Still at the root directory, run this pip command to install dependencies
pip install -r requirements.txt
Run command to start application
uvicorn main:app --reload