This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
import matplotlib.pyplot as plt | |
import numpy as np | |
class ResultReader: | |
def __init__(self): | |
self.lines = list() | |
self.op = "" | |
self.dataName = "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from selenium import webdriver | |
from selenium.webdriver.common.action_chains import * | |
import time | |
""" | |
usage: hehe ni dong de | |
dependence: selenium(an api), chromedriver(an app) | |
install selenium with: pip install -i https://pypi.douban.com/simple selenium | |
download chromedriver.exe latest version in: http://chromedriver.storage.googleapis.com/index.html?path=2.24/ | |
coded by mgh.... |