💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
~~~ urlopen爬取百度首页HTML ~~~ ```` #百度首页爬取 from urllib.request import urlopen #从请求库中导入urlopen url = "http://www.baidu.com" resp = urlopen(url) with open("baidu.html", mode\="w") as f: f.write(resp.read().decode('utf-8')) #读取到的网页的数据 f.close() print('over')