摘要: 实践从信息领域网站爬取热词。 学习定时任务(cron)设置。 # 使用 schedule 库设置定时任务 import schedule import time def job(): print("Fetching hot words...") hot_words = fetch_hot_words 阅读全文