- 博客(10)
- 资源 (1)
- 收藏
- 关注
原创 读取excel使用executemany批量插入数据库报错TypeError: expecting string or bytes object
使用executemany批量插入数据库时报错TypeError: expecting string or bytes object
2022-11-26 09:06:28 635
原创 python模块multiprocessing中join死锁
问题在一个多进程任务中出现所有任务执行完毕但是主进程不结束的问题,程序死锁from multiprocessing import Pooldef func(args): try: print(args1) except: print('出现错误,退出进程') exit()if __name__ == '__main__': args=[1,2,3,4,5,6,7] pool = Pool(8)
2022-01-18 10:56:33 1220
原创 excel表数据通过函数转换成json格式数据
使用excel自带的函数就能将数据生成json,最后再手动处理一下最好="{""tag"":"""&A1&""",""name"":"""&D1&""",""type"":"""&C1&""",""input"":""text"",""level"":""高"",""score"":""70"",""value"":"""&E1&""",""status"":""已启用""},"将代码放到G1然后扩展自定义列然后选中G列直接复制到su
2021-03-27 10:40:47 783
原创 bootstrap栅格系统五等分
.col-xs-1-5,.col-sm-1-5,.col-md-1-5,.col-lg-1-5 { min-height: 1px; padding-left: 15px; padding-right: 15px; position: relative;}.col-xs-1-5 { width: 20%; float: left;}@media (min-width: 768px) { .col-sm-1-5 { width: 20%; float: l
2021-03-23 09:27:40 483
原创 php文件字节转换
/单位换算/$file_size = filesize($update['file_src']);if( '1073741824' <= $file_size){ $file_size = round($file_size/1024/1024/1024,2)."GB";}elseif( '1073741824' > $file_size and $file_size >= '1048576'){ $file_size = round($file_size
2020-10-15 17:04:27 408
原创 centos7 shell脚本一键安装mysql8与修改密码
rpm包可以自行下载,或者使用yum安装后的缓存文件rpm -qa|grep mariadb >/dev/null if [ $? -ne 1 ]; then #mysql安装 #卸载centos自带mariadb rpm -e --nodeps mariadb-libs rpm -ivh mysql-community-common-8.0.20-1.el7.x86_64.rpm rpm -ivh mysql-community-libs-8
2020-09-02 11:14:17 1169 1
原创 php统计cpu、内存、磁盘(centos系统)
public function systemInfo(){ /* CPU占用率*/ exec('top -b -n 1',$srt); array_splice($srt,0,7); $srt = implode("\n", $srt); @preg_match_all("/\s*+[0-9]*\s*\S*\s*(\S*)\s*(\S*)\s*\S*\s*\S*\n/", $...
2020-04-27 09:57:44 389
原创 在centos7上安装tensorflow
#记录一下安装tensorflowmv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backupcurl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repoyum makecacheyum...
2020-04-08 17:35:40 217
原创 laravel框架简单的后端文件下载
public function waner(){ /*获取查询任务的集合信息*/ $filename= '网安测试.rar';//文件名 $file_dir = 'robots.txt'; //下载文件存放目录,我的文件在public下,所以没有前缀 //检查文件是否存在 if (! file_exists ( $file...
2020-04-02 14:49:35 382
python3.6.5一键离线安装包
2020-03-19
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人