https://github.com/klhenams/news-aggregator
A simple news aggregator application
https://github.com/klhenams/news-aggregator
fastapi news-aggregator newsapi python3
Last synced: about 2 months ago
JSON representation
A simple news aggregator application
- Host: GitHub
- URL: https://github.com/klhenams/news-aggregator
- Owner: klhenams
- License: mit
- Created: 2022-05-30T23:13:17.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-11-06T04:49:41.000Z (8 months ago)
- Last Synced: 2026-04-30T08:47:25.833Z (about 2 months ago)
- Topics: fastapi, news-aggregator, newsapi, python3
- Language: Python
- Homepage: https://documenter.getpostman.com/view/7705958/Uz5DqHZx
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# News Aggregator
A simple news aggregation application
Requirements
---
* Python `3.9+`
* fastapi `0.68+`
> ***Note***: Use a virtual environment or container for project isolation
## 1. Clone project
`git clone https://github.com/maaddae/news-aggregator.git`
## 2. Create virtual environment
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`
## 3. Install dependencies
Still at the root directory, run this pip command to install dependencies
`pip install -r requirements.txt`
## 3. Running application
Run command to start application
`uvicorn main:app --reload`