2020/8/24

python3模拟post/get

post url = ""  headers = { 'Accept':'application/json, text/plain, */*', 'Accept-Encoding': 'gzip, deflate', …

  • python
  • 2020/8/24
  • 916
  • 2020/8/13

    python pdf转图片

    import fitz rotate = int(0) zoom_x = 4.0#定义图片的大小比例 zoom_y = 4.0#定义图片的大小比例 trans = fitz.Matrix(zoom_x, zoom_y).preRotate(rotate)…

  • pdf python 生活
  • 2020/8/13
  • 635
  • 2020/6/2

    python selenium 判断元素是否隐藏

    is_dispalyed()

  • python selenium
  • 2020/6/2
  • 668
  • 2020/5/15

    python获取图片指定区域灰度值

    import numpx as np import cv2 from PIL import Image #读取图片,灰度化,转换为数组,L = 0.299R + 0.587G + 0.114B。'f'为float类型 img = np.arrax(Image.open("dati.JPG").convert('L'), 'f') print("Image…

  • python
  • 2020/5/15
  • 577
  • 2020/5/15

    python pip更换镜像

    清华大学:https://pypi.tuna.tsinghua.edu.cn/simple  清华大学的pip源是官网pypi的镜像,每隔5分钟同步一次,重点推荐!!! 阿里云:http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirror…

  • python
  • 2020/5/15
  • 655
  • 2020/1/19

    python获取chrome浏览器cookie

    def getcookiefromchrome(host='.10086.cn'): cookiepath=os.environ['LOCALAPPDATA']+r"\Google\Chrome\User Data\Default\Cookies" sql="select host_key,name,encrypted_value from cookies where hos…

  • python
  • 2020/1/19
  • 617
  • 2019/12/24

    No module named pip

    python -m ensurepip

  • python
  • 2019/12/24
  • 637