Python SDK
First, install the package:
from athenanews import news
API_KEY = "Your API Key"
articles = articles = news(start_date="2025-02-01", end_date="2025-03-10", query="Tesla dealership protests", key_phrases="('Tesla')", api_key=API_KEY)
print("Total Articles: " + str(len(articles)))
for a in articles:
print(a['title'])
print(a['url']
Python SDK Parameter Reference
Last updated