Information crawling best universities, together with me to see the university rankings

The best of Information crawling

Source

from urllib import request
from lxml import etree
import time

base_url = 'http://zuihaodaxue.com/zuihaodaxuepaiming2019.html'

response = request.urlopen(base_url)
html =response.read().decode()
# prin

Guess you like

Origin blog.csdn.net/qq_29339467/article/details/105341270