#encoding=utf-8 import pandas as pd import os import csv def concat_csv(filename,dirpath): with open(filename,'w') as f: cw=csv.writer(f) cw.writerow( ...
分类:
其他好文 时间:
2021-06-09 15:30:20
阅读次数:
0
git clone 项目链接产生如下提示信息: fatal: unable to access 'https://github.com/liuruoze/EasyPR.git/': OpenSSL SSL_connect: Connection was reset in connection to ...
分类:
其他好文 时间:
2021-06-09 15:22:39
阅读次数:
0
debug时: 在vm中配置:-Djna.library.path=E:/develops/test/log/src/main/resources/win32-x86-64 打包使用maven-assembly-plugin插件 使用直接mvn clean package即可 注意:需要将dll文件 ...
分类:
其他好文 时间:
2021-06-09 10:30:17
阅读次数:
0
本窗口打开: 传参: this.$router.push({ name: 'info-detail', params: {id: id}}) 取参: this.$route.params.id 新窗口打开 传参: window.open(this.$router.resolve({ path: 'i ...
分类:
其他好文 时间:
2021-06-08 23:19:17
阅读次数:
0
一、nginx日志结构 nginx中access.log 的日志结构: $remote_addr 客户端地址 211.28.65.253 $remote_user 客户端用户名称 -- $time_local 访问时间和时区 18/Jul/2012:17:00:01 +0800 $request 请 ...
分类:
其他好文 时间:
2021-06-08 22:56:51
阅读次数:
0
PermissionError: [Errno 13] Permission denied:字段里不能有空格 执行文件 from docxtpl import DocxTemplatefrom datetime import datetimeimport timeimport datetimeimp ...
分类:
其他好文 时间:
2021-06-08 22:49:54
阅读次数:
0
一.sqoop的简单概论 1.sqoop产生的原因: A. 多数使用hadoop技术的处理大数据业务的企业,有大量的数据存储在关系型数据中。 B. 由于没有工具支持,对hadoop和关系型数据库之间数据传输是一个很困难的事。 依据以上的原因sqoop产生的。 2. sqoop的介绍 sqoop是连接 ...
分类:
其他好文 时间:
2021-06-08 22:45:15
阅读次数:
0
1.添加tomcat sever。 2.添加web。 可以直接选择web文件夹 3.配置web后有两个地方要注意: 3.1 output path 生成class文件的目录 3.2 然后就是导包了 ...
分类:
其他好文 时间:
2021-06-07 21:12:23
阅读次数:
0
一、打开文件 open(path,flag,encoding,[errors]) path:打开路径 flag:打开方式:【读r(read),写w(write),追加a(append)】 encoding:编码方式 errors:错误处理 二、详解flag r:只读。该文件必须已存在。 r+:可读可 ...
分类:
编程语言 时间:
2021-06-07 21:09:28
阅读次数:
0
@staticmethoddef unzip_file(failed_file): zip_file = zipfile.ZipFile(failed_file) print(zip_file) if os.path.isdir(failed_file[0:-20]): pass else: os. ...
分类:
编程语言 时间:
2021-06-07 20:42:48
阅读次数:
0