Ë
    ýk"gâ  ã                   ó@   — d dl mZmZ  G d„ de«      Z G d„ de«      Zy)é    )ÚAbstractBaseSessionÚBaseSessionManagerc                   ó   — e Zd ZdZy)ÚSessionManagerTN)Ú__name__Ú
__module__Ú__qualname__Úuse_in_migrations© ó    úW/var/www/html/djangosite/lib/python3.12/site-packages/django/contrib/sessions/models.pyr   r      s   „ ØÑr   r   c                   óX   — e Zd ZdZ e«       Zed„ «       Z G d„ dej                  «      Z	y)ÚSessiona  
    Django provides full support for anonymous sessions. The session
    framework lets you store and retrieve arbitrary data on a
    per-site-visitor basis. It stores data on the server side and
    abstracts the sending and receiving of cookies. Cookies contain a
    session ID -- not the data itself.

    The Django sessions framework is entirely cookie-based. It does
    not fall back to putting session IDs in URLs. This is an intentional
    design decision. Not only does that behavior make URLs ugly, it makes
    your site vulnerable to session-ID theft via the "Referer" header.

    For complete documentation on using Sessions in your code, consult
    the sessions documentation that is shipped with Django (also available
    on the Django web site).
    c                 ó   — ddl m} |S )Nr   )ÚSessionStore)Ú#django.contrib.sessions.backends.dbr   )Úclsr   s     r   Úget_session_store_classzSession.get_session_store_class   s   € åDàÐr   c                   ó   — e Zd ZdZy)úSession.MetaÚdjango_sessionN)r   r   r	   Údb_tabler   r   r   ÚMetar   "   s   „ Ø#‰r   r   N)
r   r   r	   Ú__doc__r   ÚobjectsÚclassmethodr   r   r   r   r   r   r   r      s6   „ ññ" Ó€Gàñó ðô
$Ð"×'Ñ'õ $r   r   N)Ú$django.contrib.sessions.base_sessionr   r   r   r   r   r   r   ú<module>r      s"   ðß XôÐ'ô ô$Ð!õ $r   