Viewing File: /opt/alt/python35/lib/python3.5/site-packages/urllib3/__pycache__/fields.cpython-35.pyc



`W+@smddlmZddlZddlZddlmZdddZdd	ZGd
dde	Z
dS))absolute_importN)sixzapplication/octet-streamcCs!|rtj|dp|S|S)z
    Guess the "Content-Type" of a file.

    :param filename:
        The filename to guess the "Content-Type" of using :mod:`mimetypes`.
    :param default:
        If no "Content-Type" can be guessed, default to `default`.
    r)	mimetypesZ
guess_type)filenamedefaultr
/fields.pyguess_content_types	r
cstfdddDs_d|f}y|jdWnttfk
rZYnX|Stjrttjrjdtj	j
dd|fS)a
    Helper function to format and quote a single header parameter.

    Particularly useful for header parameters which might contain
    non-ASCII values, like file names. This follows RFC 2231, as
    suggested by RFC 2388 Section 4.4.

    :param name:
        The name of the parameter, a string expected to be ASCII only.
    :param value:
        The value of the parameter, provided as a unicode string.
    c3s|]}|kVqdS)Nr).0Zch)valuerr		<genexpr>#sz&format_header_param.<locals>.<genexpr>z"\
z%s="%s"asciizutf-8z%s*=%s)anyencodeUnicodeEncodeErrorUnicodeDecodeErrorrZPY3
isinstanceZ	text_typeemailZutilsZencode_rfc2231)namerresultr)rr	format_header_params
rc@sseZdZdZddddZeddZddZd	d
ZddZ	dddd
dZ
dS)RequestFieldaK
    A data container for request body parameters.

    :param name:
        The name of this request field.
    :param data:
        The data/value body.
    :param filename:
        An optional filename of the request field.
    :param headers:
        An optional dict-like object of headers to initially use for the field.
    NcCs=||_||_||_i|_|r9t||_dS)N)_name	_filenamedataheadersdict)selfrrrrrrr	__init__?s				zRequestField.__init__cCst|trNt|dkr3|\}}}q`|\}}t|}nd}d}|}|||d|}|jd||S)a
        A :class:`~urllib3.fields.RequestField` factory from old-style tuple parameters.

        Supports constructing :class:`~urllib3.fields.RequestField` from
        parameter of key/value strings AND key/filetuple. A filetuple is a
        (filename, data, MIME type) tuple where the MIME type is optional.
        For example::

            'foo': 'bar',
            'fakefile': ('foofile.txt', 'contents of foofile'),
            'realfile': ('barfile.txt', open('realfile').read()),
            'typedfile': ('bazfile.bin', open('bazfile').read(), 'image/jpeg'),
            'nonamefile': 'contents of nonamefile field',

        Field names and filenames must be unicode.
        Nrcontent_type)rtuplelenr
make_multipart)clsZ	fieldnamerrrr!Z
request_paramrrr	from_tuplesGszRequestField.from_tuplescCs
t||S)a
        Overridable helper function to format a single header parameter.

        :param name:
            The name of the parameter, a string expected to be ASCII only.
        :param value:
            The value of the parameter, provided as a unicode string.
        )r)rrrrrr	_render_partis	zRequestField._render_partcCsjg}|}t|tr'|j}x3|D]+\}}|r.|j|j||q.Wdj|S)aO
        Helper function to format and quote a single header.

        Useful for single headers that are composed of multiple items. E.g.,
        'Content-Disposition' fields.

        :param header_parts:
            A sequence of (k, v) typles or a :class:`dict` of (k, v) to format
            as `k1="v1"; k2="v2"; ...`.
        z; )rritemsappendr'join)rZheader_partspartsiterablerrrrr	
_render_partstszRequestField._render_partscCsg}dddg}xA|D]9}|jj|dr|jd||j|fqWxF|jjD]5\}}||kri|ri|jd||fqiW|jddj|S)z=
        Renders the headers for this request field.
        zContent-DispositionzContent-TypezContent-LocationFz%s: %sz
)rgetr)r(r*)rlinesZ	sort_keysZsort_keyZheader_nameZheader_valuerrr	render_headerss
"
zRequestField.render_headersc	Csr|p	d|jd<|jddjd|jd|jfd|jffg7<||jd<||jd<d	S)
a|
        Makes this request field into a multipart request field.

        This method overrides "Content-Disposition", "Content-Type" and
        "Content-Location" headers to the request parameter.

        :param content_type:
            The 'Content-Type' of the request body.
        :param content_location:
            The 'Content-Location' of the request body.

        z	form-datazContent-Dispositionz; rrzContent-TypezContent-LocationN)rr*r-rr)rZcontent_dispositionr!Zcontent_locationrrr	r$s	'
zRequestField.make_multipart)__name__
__module____qualname____doc__rclassmethodr&r'r-r0r$rrrr	r2s"r)Z
__future__rZemail.utilsrrZpackagesrr
robjectrrrrr	<module>s
Back to Directory File Manager