45 lines
960 B
Python
Executable file
45 lines
960 B
Python
Executable file
#!/usr/bin/env python3
|
|
from datetime import datetime
|
|
from typing import NamedTuple, List
|
|
|
|
# TODO FIXME
|
|
from kython.ktakeout import TakeoutHTMLParser
|
|
|
|
from ..kython.kompress import kopen
|
|
from ..takeout import get_last_takeout
|
|
|
|
|
|
class Watched(NamedTuple):
|
|
url: str
|
|
title: str
|
|
when: datetime
|
|
|
|
@property
|
|
def eid(self) -> str:
|
|
return f'{self.url}-{self.when.isoformat()}'
|
|
|
|
|
|
def get_watched():
|
|
path = 'Takeout/My Activity/YouTube/MyActivity.html'
|
|
last = get_last_takeout(path=path)
|
|
|
|
watches: List[Watched] = []
|
|
def cb(dt, url, title):
|
|
watches.append(Watched(url=url, title=title, when=dt))
|
|
|
|
parser = TakeoutHTMLParser(cb)
|
|
|
|
with kopen(last, path) as fo:
|
|
dd = fo.read().decode('utf8')
|
|
parser.feed(dd)
|
|
|
|
return list(sorted(watches, key=lambda e: e.when))
|
|
|
|
|
|
def main():
|
|
# TODO shit. a LOT of watches...
|
|
for w in get_watched():
|
|
print(w)
|
|
|
|
if __name__ == '__main__':
|
|
main()
|