Python
吾将上下而求索19
这个作者很懒,什么都没留下…
展开
-
Python初探,获取头条上的图片
接触Python后,其最普遍的应用场景是获取网站的公开数据。 于是,尝试着用Python下载头条上的图片 一、获得搜索结果 在搜索框中,输入“街拍”,然后打开调试界面,会得到 在搜索框中,输入“街拍”,然后打开调试界面,会得到请求的参数,以及返回的数据 通过调整参数中的offset可以模拟下滚动过程中获取数据的过程 对json数据分析后可以得到详情页的地址 二、处理详情页...原创 2019-02-08 23:17:36 · 292 阅读 · 0 评论 -
Wxpy学习
引入依赖包 from wxpy import * 创建对象 bot = Bot() 发送消息 1.查找对象 Friend friends = bot.friends() friend = bot.friends().search(' ')[0] Groups groups = bot.groups() group= bot.groups().search(' ')[0] 2.发送消息...原创 2019-03-22 21:17:44 · 523 阅读 · 0 评论 -
Python 装饰器
琢磨了好久,终于算是把装饰器搞明白的个大概 No BB, Show me the code. def decor(*args, **kwargs): # 最外层接受注解的参数 def handle(f): # 第二层接受被包装的函数作为参数 print("args:" + str(args)) print("kwargs:" + str(kwarg...原创 2019-09-21 10:11:31 · 230 阅读 · 0 评论