mirror of
https://github.com/NanmiCoder/MediaCrawler.git
synced 2026-06-10 03:47:26 +08:00
fix: issue #22
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# account_config.py
|
||||
import os
|
||||
|
||||
PHONE_LIST = [
|
||||
"13012345671",
|
||||
@@ -22,6 +23,5 @@ IP_PROXY_LIST = [
|
||||
]
|
||||
|
||||
IP_PROXY_PROTOCOL = "http://"
|
||||
IP_PROXY_USER = "xxxx"
|
||||
IP_PROXY_PASSWORD = "xxxx"
|
||||
|
||||
IP_PROXY_USER = os.getenv("IP_PROXY_USER", "test")
|
||||
IP_PROXY_PASSWORD = os.getenv("IP_PROXY_PASSWORD", "123456")
|
||||
|
||||
Reference in New Issue
Block a user