📜  从 web python 代码示例保存文本文件

📅  最后修改于: 2022-03-11 14:45:54.155000             🧑  作者: Mango

代码示例2
import urllib2response = urllib2.urlopen('https://wordpress.org/plugins/about/readme.txt')data = response.read()print(data)