|
@@ -70,6 +70,22 @@ def get_youshuge_account_list():
|
|
|
return get_account_list('悠书阁', 'youshuge_account_config.csv')
|
|
|
|
|
|
|
|
|
+def get_yangguang_account_list():
|
|
|
+ """
|
|
|
+ des cription: 阳光账号列表
|
|
|
+ return: [['host_name', 'channel_id', 'secert_key', 'channel', 'stage']] ->list
|
|
|
+ """
|
|
|
+ return get_account_list('阳光', 'yangguang_account_config.csv')
|
|
|
+
|
|
|
+
|
|
|
+def get_wending_account_list():
|
|
|
+ """
|
|
|
+ des cription: 文鼎账号列表
|
|
|
+ return: [['consumerkey', 'secretkey', 'siteid', 'stage', 'account']] ->list
|
|
|
+ """
|
|
|
+ return get_account_list('文鼎', 'wending_account_config.csv')
|
|
|
+
|
|
|
+
|
|
|
def get_account_list(platform, account_file_name):
|
|
|
"""
|
|
|
description: 读取账号列表
|