Package pyrobase :: Module bencode :: Class Decoder
[hide private]
[frames] | no frames]

Class Decoder

source code


Decode a string or stream to an object.

Instance Methods [hide private]
 
__init__(self, data, char_encoding=None)
Initialize encoder.
source code
 
decode(self, check_trailer=False)
Decode data in self.data and return deserialized object.
source code

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

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, data, char_encoding=None)
(Constructor)

source code 

Initialize encoder.

Overrides: object.__init__

decode(self, check_trailer=False)

source code 

Decode data in self.data and return deserialized object.

Parameters:
  • check_trailer - Raise error if trailing junk is found in data?
Raises: