加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
fetch_news.py 524 Bytes
一键复制 编辑 原始数据 按行查看 历史
Sarath Kaul 提交于 2020-09-30 19:54 . Merge branch 'master' into master
import requests
_NEWS_API = "https://newsapi.org/v1/articles?source=bbc-news&sortBy=top&apiKey="
def fetch_bbc_news(bbc_news_api_key: str) -> None:
# fetching a list of articles in json format
bbc_news_page = requests.get(_NEWS_API + bbc_news_api_key).json()
# each article in the list is a dict
for news, article in enumerate(bbc_news_page["articles"], 1):
print(f"{news}.) {article['title']}")
if __name__ == "__main__":
fetch_bbc_news(bbc_news_api_key="<Your BBC News API key goes here>")
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化