加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.py 711 Bytes
一键复制 编辑 原始数据 按行查看 历史
LaiSC 提交于 2019-12-02 09:57 . Initial commit
#!/usr/bin/python3.7
# -*- coding: utf-8 -*-
# @Time : 2019/11/30 下午 09:53
# @Email : pasalai@qq.com
# @Github : github.com/laishouchao
# @File : main.py
# @Software: PyCharm
import os
import run
if __name__ == '__main__':
choose_num = str(input("[1]直接爬取热搜\n[2]按搜索词爬取热搜\n[!]选择爬取模式:"))
os.system("cls")
if choose_num == "1":
search_date = str(input("[!]请输入日期,如2019/01/02:"))
os.system("cls")
run.runDate(search_date)
elif choose_num == "2":
search_keywords = str(input("[!]请输入关键词:"))
os.system("cls")
run.runKeywords(search_keywords)
else:
breakpoint()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化