#代理使用
>>> proxy_handler=urllib.request.ProxyHandler({'http':'211.81.31.18:8081'})
>>> opener=urllib.request.build_opener(proxy_handler)
>>> urllib.request.install_opener(opener)
>>> page=urlopen('http://ip.chinaz.com/getip.aspx')
>>> print(page.read().decode('utf-8'))
{ip:'221.238.67.231',address:'天津市 电信'}
相关文章
- 01-20python – 使用csv文件从元组到整数
- 01-20python:使用元组的多个变量
- 01-20python – 在namedtuple中使用’_’作为typename做了什么特别的事吗?
- 01-20python – List vs tuple,何时使用?
- 01-20使用Python中的元组或列表对dict进行排序
- 01-20使用不同字段的不同顺序对python中的元组进行排序
- 01-20python – 使用list / tuple元素作为键创建字典
- 01-20使用Python列表理解从嵌套元组字典结构检索数据
- 01-20元组对,使用python找到最小值
- 01-20springBoot 使用 @NotEmpty,@NotBlank,@NotNull 及@Valid注解校验请求参数