Compare commits
10 Commits
782ab1783d
...
166712515d
Author | SHA1 | Date | |
---|---|---|---|
![]() |
166712515d | ||
![]() |
bafa23131a | ||
72fd5457e6 | |||
6c6c09a158 | |||
82f8a61d16 | |||
f8e1012f3e | |||
a3c5b350fc | |||
0dc358d053 | |||
0279f667b3 | |||
0a5e98f417 |
1119
design/design.gaphor
Normal file
1119
design/design.gaphor
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,18 +1,36 @@
|
||||
import json
|
||||
|
||||
class History: #Abstract class
|
||||
def __init__(self, filename):
|
||||
self.history = list()
|
||||
def __init__(self, filename: str):
|
||||
#self.history = list()
|
||||
pass
|
||||
|
||||
def __size__(self):
|
||||
return len(history)
|
||||
|
||||
def parse_history(self, filename):
|
||||
return history
|
||||
pass
|
||||
|
||||
def is_this_type(self, filename): # bool function,
|
||||
return false # returns false if Youtube history
|
||||
@staticmethod
|
||||
def parse_history(self, filename: str):
|
||||
parsed_data = []
|
||||
|
||||
def get_video(self, index):
|
||||
return history[index]
|
||||
with open(filename, "r", encoding="utf-8") as file:
|
||||
for line in file:
|
||||
line = line.strip()
|
||||
if not line:
|
||||
continue
|
||||
try:
|
||||
parsed_data.append(json.loads(line))
|
||||
except json.JSONDecodeError:
|
||||
fixed_line = fix_unquoted_values(line)
|
||||
parsed_data.append(json.loads(fixed_line))
|
||||
|
||||
return parsed_data
|
||||
|
||||
def is_this_type(self, filename: str): # bool function,
|
||||
pass # returns false if Youtube history
|
||||
|
||||
def get_video(self, index: int):
|
||||
pass
|
||||
|
||||
def __iter__(self):
|
||||
return iter(history)
|
||||
pass
|
||||
|
||||
|
51
shadowtube/types.py
Normal file
51
shadowtube/types.py
Normal file
@ -0,0 +1,51 @@
|
||||
#
|
||||
# Copyright (c) 2025 Fedir Kovalov.
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, version 3.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
|
||||
|
||||
class Video:
|
||||
def __init__(
|
||||
self,
|
||||
id: str,
|
||||
title: str,
|
||||
description: str,
|
||||
watch_time: float,
|
||||
watch_progress: float,
|
||||
):
|
||||
self._id = id
|
||||
self._title = title
|
||||
self._description = description
|
||||
self._watch_time = watch_time
|
||||
self._watch_progress = watch_progress
|
||||
|
||||
@property
|
||||
def title(self):
|
||||
return self._title
|
||||
|
||||
@property
|
||||
def id(self):
|
||||
return self._id
|
||||
|
||||
@property
|
||||
def description(self):
|
||||
return self._description
|
||||
|
||||
@property
|
||||
def watch_time(self):
|
||||
return self._watch_time
|
||||
|
||||
@property
|
||||
def watch_progress(self):
|
||||
return self._watch_progress
|
Loading…
Reference in New Issue
Block a user