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

Use dataclasses for all objects returned by HfApi #1911 #1974

Merged
merged 5 commits into from
Jan 17, 2024
Merged
Changes from 1 commit
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
10 changes: 7 additions & 3 deletions src/huggingface_hub/hf_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,12 +243,16 @@ class LastCommitInfo(TypedDict, total=False):
title: str
date: datetime


class BlobLfsInfo(TypedDict, total=False):
@dataclass
class BlobLfsInfo(Dict):
Wauplin marked this conversation as resolved.
Show resolved Hide resolved
size: int
sha256: str
pointer_size: int

def __init__(self, data:dict):
Wauplin marked this conversation as resolved.
Show resolved Hide resolved
self.__dict__.update(data)
self.size = data['size']
self.sha256 = data['sha256']
self.pointer_size = data['pointer_size']

class BlobSecurityInfo(TypedDict, total=False):
safe: bool
Expand Down