Package restkit :: Module wrappers :: Class Request
[hide private]

Class Request

source code

object --+
         |
        Request

Instance Methods [hide private]
 
__init__(self, url, method='GET', body=None, headers=None)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
_headers__get(self) source code
 
_headers__set(self, value) source code
 
_parsed_url(self) source code
 
_path__get(self) source code
 
_host__get(self) source code
 
is_chunked(self) source code
 
is_ssl(self) source code
 
_set_body(self, body) source code
 
_get_body(self) source code
 
maybe_rewind(self, msg='') source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]
  headers
  parsed_url
parsed url
  path
  host
  body
request body

Inherited from object: __class__

Method Details [hide private]

__init__(self, url, method='GET', body=None, headers=None)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

Property Details [hide private]

headers

Get Method:
_headers__get(self)
Set Method:
_headers__set(self, value)

parsed_url

parsed url

Get Method:
_parsed_url(self)

path

Get Method:
_path__get(self)

host

Get Method:
_host__get(self)

body

request body

Get Method:
_get_body(self)
Set Method:
_set_body(self, body)