码迷,mamicode.com
首页 > 编程语言 > 详细

python urllib基础学习

时间:2015-07-16 18:52:56      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

import urllib

def main():

    url=‘http://www.qq.com‘

    url1=urllib.urlopen(url)

    # print url1.read()打印源代码

    # print url1.info()头信息

    # print url1.getcode()状态码

    # print url1.geturl()打印网址

 

    # print url1.code状态码

    # print url1.fileno()文件对象

    # print url1.fp

    # print url1.headers头信息

    # print url1.next()<!DOCTYPE html>

    # print url1.url打印网址

    # urllib.urlretrieve(url,path)写入到硬盘的

    # print urllib.quote(url)编码

    # print urllib.quote_plus(url)

    # print urllib.unquote(url)解码

    #get方式

    # url2=urllib.urlencode({‘span‘:1,‘eggs‘:2,‘bacon‘:0})

    # print url2

    # print urllib.urlopen(‘http://python.org/query?%s‘%(url2)).read()

    #post方式

    # url2=urllib.urlencode({‘span‘:1,‘eggs‘:2,‘bacon‘:0})

    # print url2

    # print urllib.urlopen(‘http://python.org/query‘,(url2)).read()

    #http代理

    proxies={‘http:‘:‘http://proxy.example.com:8080/‘}

    opener=urllib.FancyURLopener(proxies)

    f=opener.open(‘http://www.python.org‘)

    print f.read()

main()

python urllib基础学习

标签:

原文地址:http://www.cnblogs.com/mhxy13867806343/p/4632912.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!