摘要: 转自博客:https://blog.csdn.net/may_ths/article/details/84032217 激活码到期时间: 2020.06 阅读全文
posted @ 2019-09-20 09:36 LmtMe 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 输入发送的信息 发送 阅读全文
posted @ 2019-09-20 08:36 LmtMe 阅读(265) 评论(0) 推荐(0) 编辑
摘要: import time def wrapper(fn): t = 0 def inner(*args, **kwargs): nonlocal t tt = time.time() if tt - t >= 10: t = time.time() return fn(*args, **kwargs) else: print("限制访问") return inner def wrapper_agai 阅读全文
posted @ 2019-09-20 08:32 LmtMe 阅读(99) 评论(0) 推荐(0) 编辑
摘要: """ random random.random() # 0-1之间的小数 random.uniform() # 小数 (m,n) random.randint() 随机整数 [m,n] random.choice() 从列表中随机选择一个 random.sample() 从列表中随机选择n个 rando... 阅读全文
posted @ 2019-09-20 08:30 LmtMe 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 华中理工大学:http://p 阅读全文
posted @ 2019-09-19 21:56 LmtMe 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 小知识点: https://blog.csdn.net/zwq912318834/article/details/79930423 阅读全文
posted @ 2019-08-21 23:03 LmtMe 阅读(159) 评论(0) 推荐(0) 编辑
摘要: Windows开机自动运行.py文件1.找到写好的.py文件,例如我的.py文件路径:D:\编程测试文件\untitled\03131105.py 2.选中文件03131105.py,右键——属性——常规——更改,选择默认打开方式为python.exe,然后“确定”即可。 3.按照上述步骤执行后,此 阅读全文
posted @ 2019-08-21 16:55 LmtMe 阅读(1243) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-08-12 23:06 LmtMe 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 跳过 12306 ssl 证书 cookie https://cuiqingcai.com/2556.html requesesnium 的使用 https://blog.csdn.net/xc_zhou/article/details/80952074 包 requests-toolbelt 是支 阅读全文
posted @ 2019-08-12 01:27 LmtMe 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 启动方式: 写一个启动文件,与配置文件同级 from scrapy.cmdline import execute import sys,os sys.path.append(os.path.dirname(os.path.abspath(__file__))) execute(['scrapy',' 阅读全文
posted @ 2019-08-10 17:31 LmtMe 阅读(164) 评论(0) 推荐(0) 编辑