用python处理Excel数据,实现Excel的功能:分列、透视等功能 1. Excel 解压文件 #解压tar_path中的压缩文件到uzipPath def unzip_archive(tar_path): print('#######解压文件夹,',tar_path) for i in os ...
分类:
编程语言 时间:
2020-06-19 20:29:42
阅读次数:
93
在实际的业务开发中会经常遇到对文件进行相关的操作,比如新建文件夹或文件,移动、删除文件夹或文件,文件的压缩与解压缩等等!!下面就其中的压缩与解压缩进行代码演示! 文件解压缩 import os import glob import zipfile def unzip_file(dir_path): ...
分类:
编程语言 时间:
2020-06-19 11:57:42
阅读次数:
70
遇见问题截图示例如下: 解决方案: 1、本地的文件进行压缩成zip的文件 2、再次直接从本地将此压缩的zip文件拖动到linux中 3、使用linux命令:【unzip 】进行解压 语法:unzip xxx.zip ...
分类:
系统相关 时间:
2020-06-18 12:52:37
阅读次数:
91
Common Compress Formation .zip .gz .bz2 .tar .tar.gz .tar.gz2 zip & unzip (both compress and package but not recommended in linux) // zip [option] des ...
分类:
系统相关 时间:
2020-06-16 20:25:00
阅读次数:
56
1.公钥批量分发 shell 实现 100 台服务器的公钥的批量分发;LLD 规划:100 台服务器 ip 为:192.168.42.101-201,root 密码:123456。 #远程机器的用户名和密码 password=123456 username=root #将本机的公钥复制到远程机器的a ...
分类:
系统相关 时间:
2020-06-16 16:47:00
阅读次数:
61
Ubuntu安装python3 sudo apt install python3 sudo apt install python3-pip 1.安装软件 1.解压软件 unzip 2. ./configure 使用./configure出错执行下面命令 autoreconf -iv 自动生成conf ...
分类:
系统相关 时间:
2020-06-13 20:58:26
阅读次数:
72
ElasticHD两种安装方式 1、ElasticHD介绍 ElasticHD 支持 ES监控、实时搜索,Index template快捷替换修改,索引列表信息查看, SQL converts to DSL工具等 2、安装 ElasticHD是gitHub上的一个开源项目,没有官方网站,需要安装直接 ...
分类:
其他好文 时间:
2020-06-12 01:01:29
阅读次数:
214
consul+upsync+nginx实现动态负载均衡原理:将upstream配置与Nginx本身解耦,实现在线修改upstream信息nginx动态生效。优势:1、无需登录服务器配置2、避免nginx进行reload3、在线配置,后期更容易实现蓝绿。与Apollo这种类似,但需要借助upsync模块安装nginx支持upsync:测试:nginxversion:nginx/1.12.2可行--a
分类:
其他好文 时间:
2020-06-10 23:00:20
阅读次数:
75
下载tomcat yum install java -y cd /opt/ wget http://mirror.bit.edu.cn/apache/tomcat/tomcat-8/v8.5.23/bin/apache-tomcat-8.5.23.zip unzip apache-tomcat-8. ...
分类:
其他好文 时间:
2020-06-10 13:24:48
阅读次数:
64
ZIP压缩与解压类库分享 简介 适用于win32/64以及win-ce平台,支持Unicode。 版权说明 ZIP UTILS by Lucian Wischik, June 2004 - July 2005 解压调用示例 // For unzipping, add "unzip.cpp" to y ...
分类:
其他好文 时间:
2020-06-07 21:29:09
阅读次数:
103