使用此自动化脚本让你随时了解每日世界新闻,你可以使用任何语言从任何国家/地区获取新闻。这个 API 让你每天免费获取 50 篇新闻文章。
12345678910
# World News Fetcher# pip install requestsimport requestsApiKey = "YOUR_API_KEY"url = "https://api.worldnewsapi.com/search-news?text=hurricane&api-key={ApiKey}"headers = { 'Accept': 'application/json'}response = requests.get(url, headers=headers)print("News: ", response.json())