Which is best in Python: urllib2, PycURL or mechanize?

前端 未结 8 1327
一个人的身影
一个人的身影 2021-01-29 17:48

Ok so I need to download some web pages using Python and did a quick investigation of my options.

Included with Python:

urllib - seems to me that I should use ur

8条回答
  •  悲哀的现实
    2021-01-29 18:09

    Urllib2 only supports HTTP GET and POST, there might be workarounds, but If your app depends on other HTTP verbs, you will probably prefer a different module.

提交回复
热议问题