Types reference _pignio.ItemDict Bases: MetaDict Source code in _pignio.py Python64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80class ItemDict(MetaDict, total=False): # type: ignore[call-arg] id: str description: str datetime: str link: str images: list[str] image: str video: str model: str doc: str langs: list[str] text: str alttext: str systags: list[str] status: Literal["public", "silent", "unlisted", "hidden", "secret", "private"] type: str creator: str _pignio.CollectionDict Bases: MetaDict Source code in _pignio.py Python82 83 84class CollectionDict(MetaDict, total=False): # type: ignore[call-arg] items: list[str] description: str _pignio.UserDict Bases: CollectionDict Source code in _pignio.py Python86 87 88class UserDict(CollectionDict, total=False): # type: ignore[call-arg] password: str tokens: list[str]