MCPcopy
hub / github.com/django/django / aexists

Method aexists

django/contrib/sessions/backends/db.py:65–66  ·  view source on GitHub ↗
(self, session_key)

Source from the content-addressed store, hash-verified

63 return self.model.objects.filter(session_key=session_key).exists()
64
65 async def aexists(self, session_key):
66 return await self.model.objects.filter(session_key=session_key).aexists()
67
68 def create(self):
69 while True:

Callers

nothing calls this directly

Calls 1

filterMethod · 0.45

Tested by

no test coverage detected