from selenium import webdriverdriver=webdriver.Chrome()file_path=r"D:\PychramProjects\lyttest\Test\Frame.html"driver.get(file_path)driver.switch_to.fr ...
分类:
其他好文 时间:
2018-11-21 12:16:13
阅读次数:
200
#coding=utf-8 import xlrd #路径前加 r,读取的文件路径 file_path = r'D:/1.xlsx' #文件路径的中文转码 file_path = file_path.decode('utf-8') #获取数据 data = xlrd.open_workbook(fi... ...
分类:
编程语言 时间:
2018-11-18 11:30:10
阅读次数:
189
package com.fenye.puil.usbDemo;import java.nio.file.FileSystems;import java.nio.file.Path;import java.nio.file.Paths;import java.nio.file.StandardWatc ...
分类:
编程语言 时间:
2018-11-09 10:45:37
阅读次数:
193
1、模板 - Templates 1、什么是模板 模板:模板是一个包含响应文本的文件(通常是html文件),在Flask 中就是允许响应给用户看的网页。 该文件中允许包含"占位变量"来表示动态的内容,其具体值在请求中才能知道。"占位变量"最终会被真实的值所替换。 模板最终也会被解析成字符串再响应给客... ...
分类:
其他好文 时间:
2018-11-07 21:38:56
阅读次数:
193
加密解密都是这一个接口 int Rc4EncryptFile(std::string in_file_path, std::string out_file_path, const char *rc4_encrypt_key, int encrypt_chunk_size){ ifstream fin ...
分类:
其他好文 时间:
2018-11-07 20:12:07
阅读次数:
173
查看权限: ls -l file_path 查看文本文件权限 ls -ld dir_path 查看目录文件权限 修改权限: chmod o+x file_path 给其他用户添加执行权限 chmod o-x file_path 除去其他用户的执行权限 chmod u+x,g-w,o-w file_p ...
分类:
其他好文 时间:
2018-11-07 11:35:54
阅读次数:
187
需求描述管理员搭建完服务器,要对网站的性能做后期的不断的分析和调整,以至达到最完美的状态。针对服务器每天的日志访问量、高峰时间、压力等等是通过日志信息系统分析。如果事前没有预估,没有给定足相应的cpu、内存。假如有一天突然高发值,服务器会直接崩溃。通过观察日志,以便在以后工作调整中提出整改方案。简介在httpd服务器的访问日志文件access_log中,记录了大量的客户机访问信息,通过分析这些信息
分类:
其他好文 时间:
2018-11-06 19:41:32
阅读次数:
241
def cv_imread(file_path): cv_img = cv2.imdecode(np.fromfile(file_path,dtype=np.uint8),-1) return cv_img ...
分类:
其他好文 时间:
2018-11-04 12:36:50
阅读次数:
288
input { file { path => '/data/rsyslog/*/*/*.log' start_position => 'beginning' sincedb_path => '/data/rsyslog/sincedb/.db' } } filter { grok { match =... ...
分类:
其他好文 时间:
2018-11-03 10:27:57
阅读次数:
191