💥 Remove author information
This commit is contained in:
parent
d10e9a7088
commit
1d963e6f5b
2 changed files with 0 additions and 3 deletions
|
@ -37,7 +37,6 @@ class Manager:
|
||||||
{
|
{
|
||||||
"number": v.number,
|
"number": v.number,
|
||||||
"title": v.title,
|
"title": v.title,
|
||||||
"author": v.author,
|
|
||||||
"received": v.received_bytes,
|
"received": v.received_bytes,
|
||||||
"total": v.length,
|
"total": v.length,
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,6 @@ from os import PathLike
|
||||||
class Video:
|
class Video:
|
||||||
def __init__(self, video_number: str):
|
def __init__(self, video_number: str):
|
||||||
self.title = None
|
self.title = None
|
||||||
self.author = None
|
|
||||||
self.received_bytes = 0
|
self.received_bytes = 0
|
||||||
self.length = 0
|
self.length = 0
|
||||||
video_number = video_number.strip()
|
video_number = video_number.strip()
|
||||||
|
@ -35,7 +34,6 @@ class Video:
|
||||||
except:
|
except:
|
||||||
raise BiliBiliAPIException("Error happens with bilibili-api-python.")
|
raise BiliBiliAPIException("Error happens with bilibili-api-python.")
|
||||||
self.title = info["title"]
|
self.title = info["title"]
|
||||||
self.author = info["owner"]["name"]
|
|
||||||
|
|
||||||
def get_url(self):
|
def get_url(self):
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in a new issue