MySQL安装: pip install pymysql
创建数据库:CREATE DATABASE test;
使用数据库:USE test;
然后创建表:CREATE TABLE pages;数据表必须有一列
可以创建的字段类型有:bigint(7),varchar,timestamp
插入数据 INSERT INTO table(字段) VALUES(字段所要插入的值)
删除表中数据:DELETE FROM table WHERE 条件语句
删除数据库:DROP DATABASE 库名或者表格
显示数据库:show databases
跟新数据:UPDATA table SET 字段=xxx
selenium打开chrome首先要安转一个chromedrive的驱动器,放在chrome的目录下
option = webdriver.ChromeOptions()
option.add_argument(‘headless’)
driver = webdriver.Chrome(r”C:\Program Files (x86)\Google\Chrome\Application\chromedriver.exe”,options=option)
article_links = driver.find_elements_by_xpath(‘//span[@class=”link_title”]//a’)
article_links[3].get_attribute(‘href’)选择到非文本的内容