refactor: delete account_config.py

This commit is contained in:
Relakkes
2023-12-09 13:56:18 +08:00
parent 2d0f12f058
commit a136ea2739
3 changed files with 3 additions and 28 deletions

View File

@@ -1,3 +1,2 @@
from .account_config import *
from .base_config import *
from .db_config import *

View File

@@ -1,27 +0,0 @@
# -*- coding: utf-8 -*-
# account_config.py
import os
PHONE_LIST = [
"13012345671",
"13012345672",
"13012345673",
"13012345674",
"13012345675",
"13012345676",
# ...
]
IP_PROXY_LIST = [
"111.122.xx.xx1:8888",
"111.122.xx.xx2:8888",
"111.122.xx.xx3:8888",
"111.122.xx.xx4:8888",
"111.122.xx.xx5:8888",
"111.122.xx.xx6:8888",
# ...
]
IP_PROXY_PROTOCOL = "http://"
IP_PROXY_USER = os.getenv("IP_PROXY_USER", "test")
IP_PROXY_PASSWORD = os.getenv("IP_PROXY_PASSWORD", "123456")