mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-21 20:46:36 -05:00
[utils] Add __getitem__
for PagedList
This commit is contained in:
parent
483336e79e
commit
55575225b4
1 changed files with 9 additions and 0 deletions
|
@ -4000,6 +4000,15 @@ def __len__(self):
|
||||||
# This is only useful for tests
|
# This is only useful for tests
|
||||||
return len(self.getslice())
|
return len(self.getslice())
|
||||||
|
|
||||||
|
def getslice(self, start, end):
|
||||||
|
raise NotImplementedError('This method must be implemented by subclasses')
|
||||||
|
|
||||||
|
def __getitem__(self, idx):
|
||||||
|
if not isinstance(idx, int) or idx < 0:
|
||||||
|
raise TypeError('indices must be non-negative integers')
|
||||||
|
entries = self.getslice(idx, idx + 1)
|
||||||
|
return entries[0] if entries else None
|
||||||
|
|
||||||
|
|
||||||
class OnDemandPagedList(PagedList):
|
class OnDemandPagedList(PagedList):
|
||||||
def __init__(self, pagefunc, pagesize, use_cache=True):
|
def __init__(self, pagefunc, pagesize, use_cache=True):
|
||||||
|
|
Loading…
Reference in a new issue