mirror of
https://github.com/JoeanAmier/XHS-Downloader.git
synced 2025-12-26 04:48:05 +08:00
12 lines
261 B
Python
12 lines
261 B
Python
class Download:
|
|
def __init__(
|
|
self,
|
|
headers: dict,
|
|
proxies=None, ):
|
|
self.headers = headers
|
|
self.proxies = {
|
|
"http": proxies,
|
|
"https": proxies,
|
|
"ftp": proxies,
|
|
}
|