Records
EntryRecord
Bases: FrozenBaseModel
Represents a single anime entry in SeaDex.
collection_name
instance-attribute
collection_name: str
The name of the collection the entry belongs to.
theoretical_best
instance-attribute
theoretical_best: str | None
The theoretical best release for the entry, if known.
torrents
instance-attribute
torrents: tuple[TorrentRecord, ...]
A tuple of TorrentRecord
objects associated with the entry.
updated_at
instance-attribute
The timestamp of when the entry was last updated.
TorrentRecord
Bases: FrozenBaseModel
Represents a single torrent record within a SeaDex entry.
collection_id
instance-attribute
collection_id: str
The ID of the collection the torrent record belongs to.
collection_name
instance-attribute
collection_name: str
The name of the collection the torrent record belongs to.
created_at
instance-attribute
The timestamp of when the torrent record was created.
files
instance-attribute
A tuple of File
objects representing the files in the torrent.
infohash
instance-attribute
infohash: str | None
The infohash of the torrent if available, otherwise None
(private torrents).
is_dual_audio
instance-attribute
is_dual_audio: bool
Whether the torrent contains both Japanese and English audio tracks.
release_group
instance-attribute
release_group: str
The name of the group that released the torrent.
size
cached
property
size: ByteSize
The total size of the torrent, calculated by summing the sizes of all files.
updated_at
instance-attribute
The timestamp of when the torrent record was last updated.