3 �P\ � @ sP d Z ddlZdZdddgZdd� Zedfd d�Zedfd d�Zedfdd�ZdS )zTee function implementations.� Ni �tee�tee_to_file�tee_to_bytearrayc c s, x&| j j||d�D ]}||� |V qW d S )N)Zamt�decode_content)�raw�stream)�response�callback� chunksizer �chunk� r �/usr/lib/python3.6/tee.py�_tee s r c C s4 dt |dd�kpt|tj�s$td��t| |j||�S )a" Stream the response both to the generator and a file. This will stream the response body while writing the bytes to ``fileobject``. Example usage: .. code-block:: python resp = requests.get(url, stream=True) with open('save_file', 'wb') as save_file: for chunk in tee(resp, save_file): # do stuff with chunk .. code-block:: python import io resp = requests.get(url, stream=True) fileobject = io.BytesIO() for chunk in tee(resp, fileobject): # do stuff with chunk :param response: Response from requests. :type response: requests.Response :param fileobject: Writable file-like object. :type fileobject: file, io.BytesIO :param int chunksize: (optional), Size of chunk to attempt to stream. :param bool decode_content: (optional), If True, this will decode the compressed content of the response. :raises: TypeError if the fileobject wasn't opened with the right mode or isn't a BytesIO object. �b�mode� z�tee() will write bytes directly to this fileobject, it must be opened with the "b" flag if it is a file or inherit from io.BytesIO.)�getattr� isinstance�io�BytesIO� TypeErrorr �write)r Z fileobjectr r r r r r s (c c s8 t |d��$}xt| |||�D ] }|V qW W dQ R X dS )a� Stream the response both to the generator and a file. This will open a file named ``filename`` and stream the response body while writing the bytes to the opened file object. Example usage: .. code-block:: python resp = requests.get(url, stream=True) for chunk in tee_to_file(resp, 'save_file'): # do stuff with chunk :param response: Response from requests. :type response: requests.Response :param str filename: Name of file in which we write the response content. :param int chunksize: (optional), Size of chunk to attempt to stream. :param bool decode_content: (optional), If True, this will decode the compressed content of the response. �wbN)�openr )r �filenamer r �fdr r r r r A s c C s"