摘要:
首先安装 pip install virtualenv pip install virtualenvwrapper 创建虚拟环境:mkvirtualenv 虚拟环境名称 列出所有虚拟环境:lsvirtualenv 切换虚拟环境:workon 虚拟环境名称 切换到当前虚拟环境目录下:cdvirtual 阅读全文
摘要:
import pymysql config = { 'host': '127.0.0.1', 'port': 3306, 'user': 'root', 'password': 'root', 'database': 'sys', 'cursorclass': pymysql.cursors.Dic 阅读全文
摘要:
打开Dashboard-Manage Jenkins-Script Console 运行 System.setProperty("hudson.model.DirectoryBrowserSupport.CSP", "") 阅读全文
摘要:
import re stringA = "abcdefghijk" pattern = re.compile(r'd(.+?)h') # 匹配d和h中间的内容 print(re.findall(pattern, stringA)) # ['efg'] stringB = "abcdefg(pytho 阅读全文
摘要:
import requests url = "https://***" payload={} proxies = {"http": "http://127.0.0.1:8080", "https": "http://127.0.0.1:8080"} headers = { 'Cookie': 'Co 阅读全文
摘要:
import json from websocket._core import create_connection # 安装 websocket-client host = "wss://****" ws = create_connection(host,timeout=3) try: # 发送da 阅读全文
摘要:
卸载KB50146 这个更新补丁 阅读全文
摘要:
import time # 时间戳转日期 timeStamp = 1656399821 # 十位时间戳 timeArray = time.localtime(timeStamp) printDate = time.strftime("%Y-%m-%d %H:%M:%S", timeArray) pr 阅读全文
摘要:
File-Settings Tools-Python Intergrated Tools,Testing 选pytest,Apply 设置完成后,如果不能以pytest运行,继续操作,Edit Configurations 点-把现有模式全部删除 右键运行就会出现pytest了 阅读全文
摘要:
阅读全文