MCPcopy Index your code
hub / github.com/fastapi-users/fastapi-users / get_by_email

Method get_by_email

fastapi_users/db/base.py:14–16  ·  view source on GitHub ↗

Get a single user by email.

(self, email: str)

Source from the content-addressed store, hash-verified

12 raise NotImplementedError()
13
14 async def get_by_email(self, email: str) -> UP | None:
15 """Get a single user by email."""
16 raise NotImplementedError()
17
18 async def get_by_oauth_account(self, oauth: str, account_id: str) -> UP | None:
19 """Get a single user by OAuth account id."""

Callers 2

request_verify_tokenFunction · 0.45
forgot_passwordFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected