上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 30 下一页
摘要: import sys if len(sys.argv)<2: print('1') else: param=sys.argv[1] print(param) sysargv.exe start 输出结果 start 阅读全文
posted @ 2021-01-27 16:21 Microtiger 阅读(1137) 评论(0) 推荐(0)
摘要: 找到php-fpm文件 去掉request_slowlog_timeout前面的分号,并设置时间。如:request_slowlog_timeout=5表示超过5秒的 去掉slowlog前面的分号,并设置log路径。如slowlog=/usr/local/php71/log 重启PHP 阅读全文
posted @ 2020-11-30 15:25 Microtiger 阅读(188) 评论(0) 推荐(0)
摘要: https://www.runoob.com/python/python-reg-expressions.html re.match函数 re.match 尝试从字符串的起始位置匹配一个模式,如果不是起始位置匹配成功的话,match()就返回none。 import re print(re.matc 阅读全文
posted @ 2020-11-14 15:06 Microtiger 阅读(145) 评论(0) 推荐(0)
摘要: 方法1:使用r.content,得到的是bytes型,再转为str url='http://music.baidu.com' r = requests.get(url) html=r.content html_doc=str(html,'utf-8') #html_doc=html.decode(" 阅读全文
posted @ 2020-11-09 13:43 Microtiger 阅读(375) 评论(0) 推荐(0)
摘要: from selenium import webdriver driver=webdriver.Chrome() driver.set_page_load_timeout(5) driver.set_script_timeout(5)#这两种设置都进行才有效 try: d.get(s) except 阅读全文
posted @ 2020-09-27 10:12 Microtiger 阅读(2716) 评论(0) 推荐(0)
摘要: 1.安装谷歌浏览器,打开谷歌浏览器安装目录查看对应的版本号 查看浏览器的版本, 83.0.4103.116 2.到谷歌网站下载对应版本的 chromedriver.exe 驱动 http://chromedriver.storage.googleapis.com/index.html 3.把pyth 阅读全文
posted @ 2020-09-20 15:53 Microtiger 阅读(1132) 评论(0) 推荐(0)
摘要: Python之dict(或对象)与json之间的互相转化 在Python语言中,json数据与dict字典以及对象之间的转化,是必不可少的操作。 在Python中自带json库。通过import json导入。 在json模块有2个方法, loads():将json数据转化成dict数据 dumps 阅读全文
posted @ 2020-09-08 08:57 Microtiger 阅读(1390) 评论(0) 推荐(0)
摘要: Requests模块是第三方模块,需要预先安装,requests模块在python内置模块的基础上进行了高度的封装,从而使得python进行网络请求时,变得更加简洁和人性化。 1.安装非常简单,打开cmd,直接pip安装,或pycharm 中搜索 requests 安装即可. pip install 阅读全文
posted @ 2020-09-07 11:22 Microtiger 阅读(3353) 评论(0) 推荐(0)
摘要: UV价值=销售额/访客数 销售额=访客数*转化率*客单价 所以:UV价值=转化率*客单价 坑产=单价x当天销售数量x1天 淘宝自动收货 从发货时间那天算起的 自动收货的时间是15天 5张主图,详情优化,评论怎么来自然流量怎么分析竞品怎么提高关键字质量分数 投产=销售额/广告费 不赔钱投产=售价/利润 阅读全文
posted @ 2020-09-07 10:13 Microtiger 阅读(1343) 评论(0) 推荐(0)
摘要: WebDriverWait 阅读全文
posted @ 2020-09-07 09:11 Microtiger 阅读(83) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 30 下一页