See how a minor change to your commit message style can make a difference.
Tip
Take a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
See how a minor change to your commit message style can make a difference.
Tip
Take a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
# -*- coding: utf-8 -*- | |
import struct | |
import os | |
# 由于原代码不适用python3且有大量bug | |
# 以及有函数没有必要使用且一些代码书写不太规范或冗余 | |
# 所以本人在原有的大框架基本不动的情况下作了大量的细节更改。 | |
# 使得没有乱码出现,文件夹导入更方便等等。 | |
# Author:Ling Yue, Taiyuan U of Tech |
from selenium import webdriver | |
from selenium.webdriver.common.proxy import Proxy | |
from selenium.webdriver.common.keys import Keys | |
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities | |
from selenium import webdriver | |
from selenium.webdriver.chrome.options import Options | |
import zipfile | |