Orbits  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
Classes | Functions
encodings.base64_codec Namespace Reference

Classes

class  Codec
 
class  IncrementalEncoder
 
class  IncrementalDecoder
 
class  StreamWriter
 
class  StreamReader
 

Functions

def base64_encode
 Codec APIs. More...
 
def base64_decode
 
def getregentry
 

Detailed Description

Python 'base64_codec' Codec - base64 content transfer encoding

    Unlike most of the other codecs which target Unicode, this codec
    will return Python string objects for both encode and decode.

    Written by Marc-Andre Lemburg (mal@lemburg.com).

Function Documentation

def encodings.base64_codec.base64_decode (   input,
  errors = 'strict' 
)
Decodes the object input and returns a tuple (output
    object, length consumed).

    input must be an object which provides the bf_getreadbuf
    buffer slot. Python strings, buffer objects and memory
    mapped files are examples of objects providing this slot.

    errors defines the error handling to apply. It defaults to
    'strict' handling which is the only currently supported
    error handling for this codec.
def encodings.base64_codec.base64_encode (   input,
  errors = 'strict' 
)

Codec APIs.

Encodes the object input and returns a tuple (output
    object, length consumed).

    errors defines the error handling to apply. It defaults to
    'strict' handling which is the only currently supported
    error handling for this codec.
def encodings.base64_codec.getregentry ( )

Copyright 2014 Google Inc. All rights reserved.