上一页 1 2 3 4 5 6 ··· 9 下一页
摘要: 没有那么多花里胡哨: sudo npm install jsdom 阅读全文
posted @ 2021-11-01 16:57 阿磊小哥哥呀 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 1. pgsql 添加一条属性 cursor_factory=psycopg2.extras.RealDictCursor 2.mysql 同样也是添加一个属性 cursorclass = MySQLdb.cursors.DictCursor 阅读全文
posted @ 2021-10-29 15:36 阿磊小哥哥呀 阅读(171) 评论(0) 推荐(0) 编辑
摘要: import poplib import re from email.parser import Parser from email.header import decode_header from email.utils import parseaddr #解析消息头中的字符串 def decod 阅读全文
posted @ 2021-09-15 11:17 阿磊小哥哥呀 阅读(647) 评论(0) 推荐(0) 编辑
摘要: delete t from (Select Row_Number() Over(Partition By [重复的字段] order By [唯一索引如:主键ID]) As rorwsnum* From 表名) t Where t.rorwsnum> 1 阅读全文
posted @ 2021-09-07 17:19 阿磊小哥哥呀 阅读(122) 评论(0) 推荐(0) 编辑
摘要: const {JSDOM} = jsdom; const dom = new JSDOM(`<!DOCTYPE html><div>11111111</div>`); window = dom.window; document = window.document; window.navigator 阅读全文
posted @ 2021-08-19 17:36 阿磊小哥哥呀 阅读(338) 评论(0) 推荐(0) 编辑
摘要: ALTER TABLE 表名 ALTER COLUMN 字段名 要修改的字段类型 null 阅读全文
posted @ 2021-06-03 16:26 阿磊小哥哥呀 阅读(303) 评论(0) 推荐(0) 编辑
摘要: import re import pandas as pd import glob import numpy as np csv_list = glob.glob('E:/web_project/*.csv') # dataframe.to_csv(r"路径表达式",sep=",")#存储 for 阅读全文
posted @ 2021-04-02 11:07 阿磊小哥哥呀 阅读(86) 评论(0) 推荐(0) 编辑
摘要: windowserver 2002处理cv2导包出错的问题 安装numpy 安装 python -m pip install matplotlib 阅读全文
posted @ 2021-03-24 21:11 阿磊小哥哥呀 阅读(36) 评论(0) 推荐(0) 编辑
摘要: from selenium.webdriver import ActionChainsfrom selenium.webdriver.chrome.options import Options 一、启动配置 self.chrome_options = Options() self.chrome_op 阅读全文
posted @ 2021-03-24 18:40 阿磊小哥哥呀 阅读(56) 评论(0) 推荐(0) 编辑
摘要: SELECT request_session_id spid,OBJECT_NAME(resource_associated_entity_id)tableName FROM sys.dm_tran_locks WHERE resource_type='OBJECT ' kill pid_num 阅读全文
posted @ 2021-01-30 10:48 阿磊小哥哥呀 阅读(67) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 9 下一页