05 2020 档案

摘要:1、安装chrome 用下面的命令安装Google Chrome yum install https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm 也可以先下载至本地,然后安装 wget https://dl 阅读全文
posted @ 2020-05-31 18:17 凯帅 阅读(3777) 评论(1) 推荐(1)
摘要:二、安装识别引擎tesseract-ocr 一、安装pytesseract和PIL PIL全称:Python Imaging Library,python图像处理库,这个库支持多种文件格式,并提供了强大的图像处理和图形处理能力。 由于PIL仅支持到Python 2.7,所以在PIL的基础上创建了Pi 阅读全文
posted @ 2020-05-28 17:49 凯帅 阅读(3198) 评论(0) 推荐(1)
摘要:from retrying import retry def is_request_exception(e): return issubclass(type(e),RequestException) @retry(retry_on_exception=is_request_exception,wra 阅读全文
posted @ 2020-05-26 15:14 凯帅 阅读(240) 评论(0) 推荐(0)
摘要:function myrefresh() { window.location.reload(); } setTimeout('myrefresh()', 1000); //指定1秒刷新一次 </script> 阅读全文
posted @ 2020-05-25 21:47 凯帅 阅读(439) 评论(0) 推荐(0)
摘要:import requests from urllib.parse import urlencode from openpyxl import Workbook requests = requests.session() login_url = "https://passport.simuwang. 阅读全文
posted @ 2020-05-13 15:42 凯帅 阅读(734) 评论(0) 推荐(0)
摘要:1.导出数据 mysqldump -u root -p123456 tiantian > C:\Users\ASUS\Desktop\shangduogou.sql :然后输入密码 mysqldump -u dbuser -p dbname > dbname.sql 2.操作数据库 import p 阅读全文
posted @ 2020-05-08 22:21 凯帅 阅读(253) 评论(0) 推荐(0)
摘要:1.读excel import xlrd # 打开excel data = xlrd.open_workbook("Gitee.xlsx") table = data.sheet_by_name("程序开发") # # 选择的表单页 # print(table.nrows) # 多少行 # prin 阅读全文
posted @ 2020-05-01 19:49 凯帅 阅读(586) 评论(0) 推荐(0)