✅ What I Set Up (Week 1 – AI News Summarizer)

✅ What I Set Up (Week 1 – AI News Summarizer)

📂 Project Folder (ai_news_summarizer_week1/)

news_fetch.py → Python script to fetch news
requirements.txt → Dependencies (feedparser + requests)
README.md → Quick start guide
digest.md → Markdown digest of the latest tech/AI news (generated today)
news.json → JSON version of the same digest (generated today)

⚙️ Virtual Environment
Created a venv with:
python3 -m venv .venv

Activated it with:
source .venv/bin/activate

Installed dependencies with:
pip install -r requirements.txt

🚀 What I Did
Fetched real AI/tech news from 7 RSS feeds
Printed 20 headlines in the terminal
Saved them into a Markdown digest and a JSON feed
Verified the project files are in place and working