1.导入: import xlsxwriter 2.创建工作簿: wb = xlsxwriter.Workbook(‘new.xlsx’) 3.添加工作表: ws = wb.add_worksheet('图标') 4.调整列宽,或设置列的其他属性: 1 set_column(self, first_ ...
分类:
编程语言 时间:
2020-07-03 12:44:58
阅读次数:
86
pip install openpyxl 写文件 from openpyxl import Workbook wb = Workbook() # grab the active worksheet ws = wb.active # or # ws = wb.create_sheet("Sheet1" ...
分类:
其他好文 时间:
2020-07-03 01:07:20
阅读次数:
87
0X01 漏洞介绍 WebLogic管理端未授权的两个页面存在任意上传getshell漏洞,可直接获取权限。 两个页面分别为/ws_utc/begin.do,/ws_utc/config.do 0x02 影响版本 Oracle WebLogic Server,版本10.3.6.0,12.1.3.0, ...
分类:
Web程序 时间:
2020-07-02 09:32:34
阅读次数:
124
''' 提取HTML中所有URL链接 ''' import requestsfrom bs4 import BeautifulSoupimport re # r = requests.get("https://python123.io/ws/demo.html")# demo = r.text de ...
分类:
Web程序 时间:
2020-06-27 10:09:27
阅读次数:
147
import requestsfrom bs4 import BeautifulSoup # r = requests.get("https://python123.io/ws/demo.html")# demo = r.text demo = """<html><head><title>This ...
分类:
其他好文 时间:
2020-06-27 09:54:43
阅读次数:
74
首先先安装宝塔,安装python项目管理器, 然后安装python3.6.8版本, /home/pyspider 目录下创建requirements.txt 内容如下: pycurl==7.43.0.3 --global-option="--with-nss" werkzeug==0.16.1 ws ...
分类:
编程语言 时间:
2020-06-27 09:28:42
阅读次数:
233
因为线上H5游戏需要加上SSL,不想在原来的Web 服务器和游戏服务器支持SSL,只希望 在Nginx代理集群支持SSL。整体架构如下: 从上图可以看出需要总共涉及到https/http 和wss/ws 协议的转换。百度了网上的解决方案,查到一个通过配置tcp模块的解决方案符合我的想法,但一直不成功 ...
分类:
其他好文 时间:
2020-06-22 21:05:53
阅读次数:
62
1 import xlrd 2 3 flbrd = "D:\\test.xlsx" 4 ws = xlrd.open_workbook(flbrd) 5 # 获取所有sheet名字:ws.sheet_names() 6 print('获取所有sheet名字',ws.sheet_names()) 7 ...
分类:
编程语言 时间:
2020-06-22 15:48:51
阅读次数:
71
类库安装路径:python36/lib/site-package/requests header需要加的 1. url-encode 2. json 3. xml 4.html5、file 不要加 #3 form# host = 'http://ws.webxml.com.cn'# headers ...
分类:
Web程序 时间:
2020-06-22 00:56:40
阅读次数:
97
代码: <!DOCTYPE html> <html xmlns="http://www.ws.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></ ...
分类:
其他好文 时间:
2020-06-13 00:13:39
阅读次数:
65