This file contains hidden or 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
#BeautifulSoup爬虫实践:房屋价格数据 | |
import requests | |
import pandas as pd | |
import csv | |
from bs4 import BeautifulSoup | |
import MySQLdb | |
conn = MySQLdb.connect(host ='localhost',user = 'root',passwd = 'yourpasswd',db = 'ershoufang',charset = "utf8") | |
cur = conn.cursor() |