上一页 1 2 3 4 5 6 7 ··· 39 下一页
摘要: 下载 wget https://tengine.taobao.org/download/tengine-2.3.3.tar.gz 安装依赖 yum -y install openssl openssl-devel yum -y install pcre pcre-devel 安装 tar xf te 阅读全文
posted @ 2023-02-02 15:57 豆浆D 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 一、查看当前Python版本 [root@localhost ~]# python -V Python 2.7.5 二、下载新的python包并安装 进入Python官网(https://www.python.org),选择需要的版本。此处我选择Python3.7.3版本 [root@localho 阅读全文
posted @ 2023-02-02 14:34 豆浆D 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 直接只用rest_framework的搜索会不起作用 settings 'DEFAULT_FILTER_BACKENDS': [ 'rest_framework.filters.SearchFilter', # 模糊搜索 # 'django_filters.rest_framework.Django 阅读全文
posted @ 2022-11-18 15:13 豆浆D 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 列表和字典 list.pop(index) # 默认最后一个 dict.pop(key, None) # 默认最后一个,key不存在不做处理 dict.pop(key, 'key not exit') # 默认最后一个,报错key不存在 阅读全文
posted @ 2022-09-07 15:24 豆浆D 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 识别滑块验证码并自动登录 import cv2 from selenium import webdriver from selenium.webdriver.support.wait import WebDriverWait from selenium.webdriver.support impor 阅读全文
posted @ 2022-06-21 00:45 豆浆D 阅读(758) 评论(0) 推荐(0) 编辑
摘要: 指定某行 df = pd.DataFrame(pd.read_excel(excelFile3,header = 3)) 跳过几行 df = pd.DataFrame(pd.read_excel(excelFile3,skiprows=3)) 阅读全文
posted @ 2022-06-14 17:19 豆浆D 阅读(448) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.delftstack.com/zh/howto/python-pandas/difference-between-pandas-apply-map-and-applymap/ 阅读全文
posted @ 2022-06-06 11:38 豆浆D 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 1.str >>>list str1 = "12345" list1 = list(str1) print list1 str2 = "123 sjhid dhi" list2 = str2.split() #or list2 = str2.split(" ") print list2 str3 = 阅读全文
posted @ 2022-06-01 16:03 豆浆D 阅读(558) 评论(0) 推荐(0) 编辑
摘要: 语法格式大致如下: os.walk(top[, topdown=True[, onerror=None[, followlinks=False]]]) top – 根目录下的每一个文件夹(包含它自己), 产生3-元组 (dirpath, dirnames, filenames)【文件夹路径, 文件夹 阅读全文
posted @ 2022-05-30 16:24 豆浆D 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 代码找到包含字符串abc的行(可进行再处理) file = Path( '/Users/soymilk/Documents/groovys/jenkins/prod-skb-web-vue-git.groovy') # with open(Path(file), 'r') as f: # print 阅读全文
posted @ 2022-05-30 16:03 豆浆D 阅读(35) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 39 下一页