fixed faulty type hint and old function
This commit is contained in:
parent
6b2d2e0bfc
commit
2ff58d3a30
@ -34,7 +34,7 @@ class Page:
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def get_request(cls, url: str, accepted_response_codes: set = set((200,)), trie: int = 0) -> Optional[
|
def get_request(cls, url: str, accepted_response_codes: set = set((200,)), trie: int = 0) -> Optional[
|
||||||
requests.Request]:
|
requests.Response]:
|
||||||
try:
|
try:
|
||||||
r = cls.API_SESSION.get(url, timeout=cls.TIMEOUT)
|
r = cls.API_SESSION.get(url, timeout=cls.TIMEOUT)
|
||||||
except requests.exceptions.Timeout:
|
except requests.exceptions.Timeout:
|
||||||
@ -53,7 +53,7 @@ class Page:
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def post_request(cls, url: str, json: dict, accepted_response_codes: set = set((200,)), trie: int = 0) -> Optional[
|
def post_request(cls, url: str, json: dict, accepted_response_codes: set = set((200,)), trie: int = 0) -> Optional[
|
||||||
requests.Request]:
|
requests.Response]:
|
||||||
try:
|
try:
|
||||||
r = cls.API_SESSION.post(url, json=json, timeout=cls.TIMEOUT)
|
r = cls.API_SESSION.post(url, json=json, timeout=cls.TIMEOUT)
|
||||||
except requests.exceptions.Timeout:
|
except requests.exceptions.Timeout:
|
||||||
|
@ -257,13 +257,13 @@ class Musify(Page):
|
|||||||
else:
|
else:
|
||||||
LOGGER.warning("got an unequal ammount than 3 small elements")
|
LOGGER.warning("got an unequal ammount than 3 small elements")
|
||||||
|
|
||||||
return cls.ALBUM_CACHE.append(Album(
|
return Album(
|
||||||
_id=_id,
|
_id=_id,
|
||||||
title=title,
|
title=title,
|
||||||
source_list=source_list,
|
source_list=source_list,
|
||||||
date=ID3Timestamp(year=year),
|
date=ID3Timestamp(year=year),
|
||||||
artist_list=artist_list
|
artist_list=artist_list
|
||||||
))
|
)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def parse_contact_container(cls, contact_container_soup: BeautifulSoup) -> List[Union[Artist, Album]]:
|
def parse_contact_container(cls, contact_container_soup: BeautifulSoup) -> List[Union[Artist, Album]]:
|
||||||
|
@ -33,4 +33,4 @@ def fetch_album():
|
|||||||
print(artist.id, artist.name)
|
print(artist.id, artist.name)
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
fetch_album()
|
search()
|
||||||
|
Loading…
Reference in New Issue
Block a user