Tesla's Blog

There's a bug...

python替换字符串中特定string的值

在工作中遇到一种需求,需要将一个csv文件中的各个key的值替换到json中的对应的值,写好脚本后运行也正常。但是觉得还可以继续优化,今天使用了一个for循环,使得脚本简练了不少。 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 import csv ...

python进行base64编码和解码

1 2 3 4 5 6 7 import base64 # base64编码 a = """{"contact_mobile":"13291110987","DAS2":{"success":true,"asset_score":"47","behavior_score":"96","biz_no":"ZM201803203000000229000003500888","composit...

python获取unix时间戳

unix时间戳是从1970年1月1日(UTC/GMT的午夜)开始所经过的秒数,不考虑闰秒。 10位时间戳获取方法 1 2 3 4 5 6 import time t = time.time() print(t) print(int(t)) #10位时间戳 13位时间戳获取方法 1 2 3 4 5 import time millis = int(round(time.t...

python—itchat下载拼接微信好友头像图

转载至https://zhuanlan.zhihu.com/p/34290391 getHeadImgs.py,执行完该python文件后,会将好友的头像图片下载到指定目录 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 import itchat import time itchat.auto_login() for friend in i...

python datetime

python datetime模块用strftime 格式化时间 1 2 from datetime import datetime print(datetime.now().strftime("%Y-%m-%d %H:%M:%S")) 输出结果:

解决scrapy安装失败

最近学习爬虫,安装scrapy时报错。 一开始看到安装失败的提示,以为需要安装 Microsoft Visual C++ 14.0,根据后面的链接打开之后下载地址又跳转到Visual Studio的下载地址,坑爹呢… 后来在网上找到资料,说是单独下载twisted的whl文件进行pip安装就可以 一开始下错了版本 更换版本后成功安装 scrapy成功安装

使用youtube-dl模块下载网络视频

以前使用过you-get模块来下载视频,但是经常会出现一些问题,特别是下载国内的视频。后来使用youtube-dl模块来下载,发现好用不少,而且还可以下载1080P的视频,很赞。 youtube-dl地址:https://github.com/rg3/youtube-dl 安装youtube-dl模块 pip install youtube-dl 安装ffmpeg Goog...

Sunflower (Paddy Sun) - 柳舒淇 | Liushu Qi play


locust实战

安装最新版Locust 1 pip install git+git://github.com/locustio/locust.git@master#egg=locustio 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39...

requests模块返回内容的encoding