上一页 1 2 3 4 5 6 7 8 9 ··· 24 下一页
摘要: 首先安装 pip install virtualenv pip install virtualenvwrapper 创建虚拟环境:mkvirtualenv 虚拟环境名称 列出所有虚拟环境:lsvirtualenv 切换虚拟环境:workon 虚拟环境名称 切换到当前虚拟环境目录下:cdvirtual 阅读全文
posted @ 2023-02-13 23:43 OTAKU_nicole 阅读(27) 评论(0) 推荐(0) 编辑
摘要: import pymysql config = { 'host': '127.0.0.1', 'port': 3306, 'user': 'root', 'password': 'root', 'database': 'sys', 'cursorclass': pymysql.cursors.Dic 阅读全文
posted @ 2023-01-19 16:48 OTAKU_nicole 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 打开Dashboard-Manage Jenkins-Script Console 运行 System.setProperty("hudson.model.DirectoryBrowserSupport.CSP", "") 阅读全文
posted @ 2022-08-26 16:41 OTAKU_nicole 阅读(30) 评论(0) 推荐(0) 编辑
摘要: import re stringA = "abcdefghijk" pattern = re.compile(r'd(.+?)h') # 匹配d和h中间的内容 print(re.findall(pattern, stringA)) # ['efg'] stringB = "abcdefg(pytho 阅读全文
posted @ 2022-08-18 17:41 OTAKU_nicole 阅读(313) 评论(0) 推荐(0) 编辑
摘要: import requests url = "https://***" payload={} proxies = {"http": "http://127.0.0.1:8080", "https": "http://127.0.0.1:8080"} headers = { 'Cookie': 'Co 阅读全文
posted @ 2022-08-02 10:25 OTAKU_nicole 阅读(1372) 评论(0) 推荐(0) 编辑
摘要: import json from websocket._core import create_connection # 安装 websocket-client host = "wss://****" ws = create_connection(host,timeout=3) try: # 发送da 阅读全文
posted @ 2022-07-11 17:49 OTAKU_nicole 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 卸载KB50146 这个更新补丁 阅读全文
posted @ 2022-07-07 18:22 OTAKU_nicole 阅读(44) 评论(0) 推荐(0) 编辑
摘要: import time # 时间戳转日期 timeStamp = 1656399821 # 十位时间戳 timeArray = time.localtime(timeStamp) printDate = time.strftime("%Y-%m-%d %H:%M:%S", timeArray) pr 阅读全文
posted @ 2022-06-28 15:05 OTAKU_nicole 阅读(223) 评论(0) 推荐(0) 编辑
摘要: File-Settings Tools-Python Intergrated Tools,Testing 选pytest,Apply 设置完成后,如果不能以pytest运行,继续操作,Edit Configurations 点-把现有模式全部删除 右键运行就会出现pytest了 阅读全文
posted @ 2022-06-21 17:21 OTAKU_nicole 阅读(421) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-06-13 10:17 OTAKU_nicole 阅读(156) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 24 下一页