
    wi
                     *    d Z ddlmZmZ dedefdZdS )z:Contains utilities to handle datetimes in Huggingface Hub.    )datetimetimezonedate_stringreturnc                 f   	 |                      d          rCd| vr| dd         dz   } n1| dd                             d          \  }}| d|dd         dd} t          j        | d                              t
          j        	          S # t          $ r}t          d
|  d          |d}~ww xY w)a  
    Parses a date_string returned from the server to a datetime object.

    This parser is a weak-parser is the sense that it handles only a single format of
    date_string. It is expected that the server format will never change. The
    implementation depends only on the standard lib to avoid an external dependency
    (python-dateutil). See full discussion about this decision on PR:
    https://github.com/huggingface/huggingface_hub/pull/999.

    Example:
        ```py
        > parse_datetime('2022-08-19T07:19:38.123Z')
        datetime.datetime(2022, 8, 19, 7, 19, 38, 123000, tzinfo=timezone.utc)
        ```

    Args:
        date_string (`str`):
            A string representing a datetime returned by the Hub server.
            String is expected to follow '%Y-%m-%dT%H:%M:%S.%fZ' pattern.

    Returns:
        A python datetime object.

    Raises:
        :class:`ValueError`:
            If `date_string` cannot be parsed.
    Z.Nz.000000Z   z0<6z%Y-%m-%dT%H:%M:%S.%fZ)tzinfozCannot parse 'zS' as a datetime. Date string is expected to follow '%Y-%m-%dT%H:%M:%S.%fZ' pattern.)endswithsplitr   strptimereplacer   utc
ValueError)r   basefractiones       w/var/www/development/aibuddy-work/election-extract/venv/lib/python3.11/site-packages/huggingface_hub/utils/_datetime.pyparse_datetimer      s    8$$ 
	<+%%)#2#.; "-SbS!1!7!7!<!<h!%;;!;;;; .EFFNNV^VbNccc   7[ 7 7 7
 
 	s   B
B 
B0B++B0N)__doc__r   r   strr        r   <module>r      sR    A @ ' ' ' ' ' ' ' '/ / / / / / / /r   