§
    jÖ	im  ã                   ó.   — d Z ddlZ G d„ de¦  «        ZdS )z5An abstract class for caching the discovery document.é    Nc                   ó`   — e Zd ZdZej        Zej        d„ ¦   «         Zej        d„ ¦   «         Z	dS )ÚCachezA base abstract cache class.c                 ó   — t          ¦   «         ‚)zúGets the content from the memcache with a given key.

        Args:
          url: string, the key for the cache.

        Returns:
          object, the value in the cache for the given key, or None if the key is
          not in the cache.
        ©ÚNotImplementedError)ÚselfÚurls     ú\/srv/django_bis/venv311/lib/python3.11/site-packages/googleapiclient/discovery_cache/base.pyÚgetz	Cache.get   s   € õ "Ñ#Ô#Ð#ó    c                 ó   — t          ¦   «         ‚)z¥Sets the given key and content in the cache.

        Args:
          url: string, the key for the cache.
          content: string, the discovery document.
        r   )r   r	   Úcontents      r
   Úsetz	Cache.set&   s   € õ "Ñ#Ô#Ð#r   N)
Ú__name__Ú
__module__Ú__qualname__Ú__doc__ÚabcÚABCMetaÚ__metaclass__Úabstractmethodr   r   © r   r
   r   r      s]   € € € € € Ø&Ð&à”K€MàÔð
$ð 
$ñ Ôð
$ð 	Ôð$ð $ñ Ôð$ð $ð $r   r   )r   r   Úobjectr   r   r   r
   ú<module>r      sJ   ðð <Ð ;à 
€
€
€
ð$ð $ð $ð $ð $ˆFñ $ô $ð $ð $ð $r   