DengFengLai's picture
DF.
0a1b571
raw
history blame
349 Bytes
from httpx import Cookies
from hibiapi.utils.net import BaseNetClient
from .constants import NeteaseConstants
class NetRequest(BaseNetClient):
def __init__(self):
super().__init__(
headers=NeteaseConstants.DEFAULT_HEADERS,
cookies=Cookies({k: v.value for k, v in NeteaseConstants.COOKIES.items()}),
)