File size: 285 Bytes
0a1b571
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
from hibiapi.utils.net import BaseNetClient

from .constants import SauceConstants


class NetRequest(BaseNetClient):
    def __init__(self):
        super().__init__(
            headers={"user-agent": SauceConstants.USER_AGENT},
            proxies=SauceConstants.PROXIES,
        )