Skip to content

Instantly share code, notes, and snippets.

@mleinart
Created March 8, 2011 16:16
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mleinart/860469 to your computer and use it in GitHub Desktop.
Save mleinart/860469 to your computer and use it in GitHub Desktop.
class FlexibleRequest(urllib2.Request):
VALID_METHODS = [ 'GET', 'POST', 'PUT', 'DELETE', 'HEAD', 'TRACE', 'OPTIONS', 'CONNECT', 'PATCH' ]
def __init__(self, *args, **kwargs):
if 'method' in kwargs:
if not kwargs['method'] in self.VALID_METHODS:
raise ValueError("Invalid method specified: %s" % kwargs['method'])
self.method = kwargs.pop('method')
else:
self.method = None
urllib2.Request.__init__(self, *args, **kwargs)
def get_method(self):
if not self.method: return urllib2.Request.get_method(self)
else: return self.method
## Example:
#req = FlexibleRequest(url, data, method='DELETE')
#response = urllib2.urlopen(req)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment