🌍 NewsAPI - Fetch News from Multiple Sources with Ease 📰

🔥 Overview
NewsAPI is a Python package that allows you to easily fetch the latest news articles from popular sources like BBC, ABP News, and India Today. Whether you're building a news aggregator or just looking for easy access to headlines, NewsAPI provides a simple interface to gather data with minimal setup.
Features:
- 🌐 Fetch news from BBC, ABP News, and India Today.
- 🔍 Optional keyword-based news search for bbc (e.g., "technology", "politics").
- 🛠️ Simple API interface.
- 📦 Lightweight and easy to integrate into your project.
🚀 Usage
Using NewsAPI to fetch news is super simple. Here’s a quick guide:
Fetch the Latest News from BBC:
from wrapper_news_api import NewsAPI
news_api = NewsAPI()
bbc_news = news_api.bbc()
for article in bbc_news:
print(f"Title: {article['title']}")
print(f"Description: {article['description']}")
print("---")
📦 Installation
Install the latest version from PyPI:
pip install wrapper_news_api