Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add helpers to handle OAuth in a FastAPI app #2684

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/source/en/_toctree.yml
Original file line number Diff line number Diff line change
@@ -86,3 +86,5 @@
title: Webhooks server
- local: package_reference/serialization
title: Serialization
- local: package_reference/oauth
title: OAuth
22 changes: 22 additions & 0 deletions docs/source/en/package_reference/oauth.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
## TO BE COMPLETED

### attach_huggingface_oauth

[[autodoc]] attach_huggingface_oauth

### parse_huggingface_oauth

[[autodoc]] parse_huggingface_oauth

### OAuthOrgInfo

[[autodoc]] OAuthOrgInfo

### OAuthUserInfo

[[autodoc]] OAuthUserInfo

### OAuthInfo

[[autodoc]] OAuthInfo

8 changes: 8 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -31,6 +31,13 @@ def get_version() -> str:
"aiohttp", # for AsyncInferenceClient
]

extras["oauth"] = [
"authlib>=1.3.2", # minimum version to include https://github.com/lepture/authlib/pull/644
"fastapi",
"httpx", # required for authlib but not included in its dependencies
"itsdangerous", # required for starlette SessionMiddleware
]

extras["torch"] = [
"torch",
"safetensors[torch]",
@@ -59,6 +66,7 @@ def get_version() -> str:
extras["testing"] = (
extras["cli"]
+ extras["inference"]
+ extras["oauth"]
+ [
"jedi",
"Jinja2",
14 changes: 14 additions & 0 deletions src/huggingface_hub/__init__.py
Original file line number Diff line number Diff line change
@@ -70,6 +70,13 @@
"logout",
"notebook_login",
],
"_oauth": [
"OAuthInfo",
"OAuthOrgInfo",
"OAuthUserInfo",
"attach_huggingface_oauth",
"parse_huggingface_oauth",
],
"_snapshot_download": [
"snapshot_download",
],
@@ -606,6 +613,13 @@ def __dir__():
logout, # noqa: F401
notebook_login, # noqa: F401
)
from ._oauth import (
OAuthInfo, # noqa: F401
OAuthOrgInfo, # noqa: F401
OAuthUserInfo, # noqa: F401
attach_huggingface_oauth, # noqa: F401
parse_huggingface_oauth, # noqa: F401
)
from ._snapshot_download import snapshot_download # noqa: F401
from ._space_api import (
SpaceHardware, # noqa: F401
Loading