python urllib2 中的自定义方法

发布于 2024-09-26 05:24:54 字数 363 浏览 3 评论 0原文

使用 urllib2,我们是否可以使用“GET”或“POST”以外的方法(当提供数据时)?

我深入研究了该库,似乎使用 GET 或 POST 的决定“方便地”与请求中是否提供数据相关。

例如,我想与 CouchDB 数据库进行交互,该数据库需要“DEL”、“PUT”等方法。我想要 urllib2 的处理程序,但需要进行我自己的方法调用。

我不想将第 3 方模块导入到我的项目中,例如 CouchDB python api。所以请不要走那条路。我的实现必须使用 python 2.6 附带的模块。 (我的设计规范要求使用准系统 PortablePython 发行版)。在导入外部模块之前,我会使用 httplib 编写自己的界面。

非常感谢您的帮助

Using urllib2, are we able to use a method other than 'GET' or 'POST' (when data is provided)?

I dug into the library and it seems that the decision to use GET or POST is 'conveniently' tied to whether or not data is provided in the request.

For example, I want to interact with a CouchDB database which requires methods such as 'DEL', 'PUT'. I want the handlers of urllib2, but need to make my own method calls.

I WOULD PREFER NOT to import 3rd party modules into my project, such as the CouchDB python api. So lets please not go down that road. My implementation must use the modules that ship with python 2.6. (My design spec requires the use of a barebones PortablePython distribution). I would write my own interface using httplib before importing external modules.

Thanks so much for the help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

明媚如初 2024-10-03 05:24:54

您可以像这样子类化 urllib2.Request (未经测试)

import urllib2

class MyRequest(urllib2.Request):
    GET = 'get'
    POST = 'post'
    PUT = 'put'
    DELETE = 'delete'

    def __init__(self, url, data=None, headers={},
                 origin_req_host=None, unverifiable=False, method=None):
       urllib2.Request.__init__(self, url, data, headers, origin_req_host, unverifiable)
       self.method = method

    def get_method(self):
        if self.method:
            return self.method

        return urllib2.Request.get_method(self)

opener = urllib2.build_opener(urllib2.HTTPHandler)
req = MyRequest('http://yourwebsite.com/put/resource/', method=MyRequest.PUT)

resp = opener.open(req)

You could subclass urllib2.Request like so (untested)

import urllib2

class MyRequest(urllib2.Request):
    GET = 'get'
    POST = 'post'
    PUT = 'put'
    DELETE = 'delete'

    def __init__(self, url, data=None, headers={},
                 origin_req_host=None, unverifiable=False, method=None):
       urllib2.Request.__init__(self, url, data, headers, origin_req_host, unverifiable)
       self.method = method

    def get_method(self):
        if self.method:
            return self.method

        return urllib2.Request.get_method(self)

opener = urllib2.build_opener(urllib2.HTTPHandler)
req = MyRequest('http://yourwebsite.com/put/resource/', method=MyRequest.PUT)

resp = opener.open(req)
像你 2024-10-03 05:24:54

它可能是:

import urllib2

method = 'PATH'
request = urllib2.Request('http://host.com')
request.get_method = lambda: method()

也就是说,运行时类修改又称为猴子路径。

It could be:

import urllib2

method = 'PATH'
request = urllib2.Request('http://host.com')
request.get_method = lambda: method()

That is, a runtime class modification A.K.A monkey path.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文