A simple tool for aggregating news and generating digests.
The project collects news from multiple sources, processes articles, and generates concise summaries in a unified digest.
- Aggregates news from different sources
- Creates short, readable digests
- Easy to run via GitHub Actions or locally
- Easily extensible with new feeds or summarization logic
git clone https://github.com/Faustze/news-digest.git
cd news-digestpip install -r requirements.txtOr with uv:
uv syncCreate a .env file if needed:
TELEGRAM_BOT_TOKEN=your_bot_token
TELEGRAM_CHAT_ID=your_chat_id
GROQ_API_KEY=your_groq_api_keypython news_pipeline.pynews-digest/
├── .github/workflows/daily_digest.yml # GitHub Actions workflow that runs the daily digest pipeline
├── output/ # Generated digests
├── config.yaml # Configuration for news_pipeline
├── news_pipeline.py # News feed pipeline — LangChain + Groq (free tier). Fetches, filters, and summarizes news from RSS feeds.
├── send_telegram.py # Optional: sends the latest digest to a Telegram chat. Reads TELEGRAM_BOT_TOKEN and TELEGRAM_CHAT_ID from environment.
├── requirements.txt # Python dependencies
└── pyproject.toml # Project metadata and dependency management (uv-compatible)
This project is licensed under the Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0) license.
You are free to share and adapt the material, as long as you provide attribution and do not use it for commercial purposes.