Spaces:
Sleeping
Sleeping
from fastapi import FastAPI | |
from utils import fetch_news_data | |
app = FastAPI() | |
def home(): | |
return {"message": "News Summarization API is running!"} | |
def get_news(company_name: str, article_number: int): | |
results = fetch_news_data(company_name, article_number) | |
return {"news": results} | |
# run locally with: uvicorn api:app --reload |