SpotiClub Patch v0.2.0
Some checks failed
CodeQL / Analyze (python) (push) Has been cancelled

This commit is contained in:
unknown
2025-12-17 21:03:32 +01:00
parent acd633d3eb
commit f2c6a5ec0d
18 changed files with 4786 additions and 515 deletions

View File

@@ -3,7 +3,6 @@ from librespot import util
from librespot.crypto import Packet
from librespot.proto import Mercury_pb2 as Mercury, Pubsub_pb2 as Pubsub
from librespot.structure import Closeable, PacketsReceiver, SubListener
from requests.structures import CaseInsensitiveDict
import io
import json
import logging
@@ -347,11 +346,11 @@ class RawMercuryRequest:
return RawMercuryRequest.Builder()
class Builder:
header_dict: CaseInsensitiveDict
header_dict: dict
payload: typing.List[bytes]
def __init__(self):
self.header_dict = CaseInsensitiveDict()
self.header_dict = {}
self.payload = []
def set_uri(self, uri: str):