51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#微信传大文件
python webdriver api-右键另存下载文件
右键另存下载文件先编辑SciTE脚本: ;ControlFocus("title","text",controlID);表示将焦点切换到标题为title窗体中的controlID上;Edit1表示第一个可以编辑的实例;title表示弹出的Window窗口标题,不同浏览器的标题可能不一样ControlFocus...
代码星球
·
2021-02-13
python
webdriver
api-
右键
另存
python webdriver api-上传文件的三种方法
上传文件:第一种方式,sendkeys(),最简单的#encoding=utf-8fromseleniumimportwebdriverimportunittestimporttimeimporttracebackfromselenium.webdriver.support.uiimportWebDriverWaitf...
代码星球
·
2021-02-13
python
webdriver
api-
上传
文件
python excel操作 练习:#生成一个excel文件,生成3个sheet,每个sheet的a1写一下sheet的名称。每个sheet有个底色
练习:#生成一个excel文件,生成3个sheet,每个sheet的a1写一下sheet的名称。每个sheet有个底色#coding=utf-8 fromopenpyxlimportWorkbookwb=Workbook()ws1=wb.create_sheet('sheet1',0)ws2=wb.creat...
代码星球
·
2021-02-12
sheet
excel
生成
每个
python
python 文件操作,os.path.walk()的回调函数打印文件名
#coding=utf-8importosdeffind_file(arg,dirname,files): #foriinarg: #printi forfileinfi...
代码星球
·
2021-02-12
python
文件
操作
os.path.walk
回调
python 文件操作 练习:取得文件的最后存取时间
#coding=utf-8importosimporttimefile_atime=int(os.path.getatime('d:\a.txt'))print"file_atime:",file_atimetime_arr=time.localtime(file_atime)print'time_arr:',time...
代码星球
·
2021-02-12
文件
python
操作
练习
取得
python 文件操作 练习:把一个目录下的所有文件名,打印一下,不要包含后缀名
#coding=utf-8importosos.chdir('d:\test2')file_list=os.listdir('.')print"file_list:",file_listprint"*"*100forfileinfile_list: printos.path.split...
代码星球
·
2021-02-12
python
文件
操作
练习
一个
python xml练习:从database.xml文件取databaselist的ip、name、passwd,写入列表
xml:<?xmlversion='1.1'encoding='utf-8'?><!--thisisatestaboutxml--><databaselisttype='oracle'> <databaseuserArea='suzhou'&g...
代码星球
·
2021-02-12
python
xml
练习
database.xml
文件
python 用类方法和静态方法实现是追加写文件内容,和读指定行号的内容
用类方法和静态方法实现:一个是追加写文件一行内容,一个是读指定行号的内容 #coding=utf-8 classhandle_file(object): def__init__(self,file_path): &nbs...
代码星球
·
2021-02-12
方法
内容
python
用类
静态
将一批数据以二进制形式存放在磁盘文件中
1#include<iostream>2#include<fstream>3/*runthisprogramusingtheconsolepauseroraddyourowngetch,system("pause")orinputloop*/4usingnamespacestd;5structs...
代码星球
·
2021-02-12
一批
据以
二进制
形式
放在
读入字符存入磁盘文件
1#include<iostream>2#include<fstream>3/*runthisprogramusingtheconsolepauseroraddyourowngetch,system("pause")orinputloop*/4usingnamespacestd;5voidsav...
代码星球
·
2021-02-12
读入
字符
存入
磁盘
文件
数组送到磁盘文件存放
1#include<iostream>2#include<fstream>3/*runthisprogramusingtheconsolepauseroraddyourowngetch,system("pause")orinputloop*/4usingnamespacestd;5intmain...
代码星球
·
2021-02-12
数组
送到
磁盘
文件
存放
原生使用.vue文件
httpVueLoader.js使用这个插件...
代码星球
·
2021-02-12
原生
使用
.vue
文件
nginx.conf 文件的思想
nginx可以说是反向服务代理的神器,拥有很多的优点,但是在使用的时候,却被反向搞晕了头脑,接下来我们来聊聊nginx反向服务代理的思想 这是要修改的核心 serve:代表服务器的意思 listen:80 监听的端口:默认是80 serve_name:localhost...
代码星球
·
2021-02-12
nginx.conf
文件
思想
前端微信公众号的网页开发调试
公众号开发有很多限制,尤其是网页开发,竟然没有调试的入口 开发webapp的诟病 接下来我们可以使用vconsole来进行开发调试 vConsole是一款由微信公众平台前端团队打造的前端调试面板,专治手机端看log难题 使用方法:通过npm来下载 下载网址:https://www.npmjs.com/pa...
代码星球
·
2021-02-12
前端
微信
公众
号的
网页
微信小程序倒计时的方法
timeOut:function(time){ varthat=this; varend=newDate(time).getTime(); varInterval=setInterval(function(){ varstart=newDate().getTime() varx=e...
代码星球
·
2021-02-12
微信
程序
倒计时
方法
首页
上一页
...
51
52
53
54
55
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他