提问人:Hashin Veselko 提问时间:7/29/2023 最后编辑:John GordonHashin Veselko 更新时间:7/29/2023 访问量:20
GetProxyPairs 中的错误 -> 没有文件或目录工具/代理.txt
Error in GetProxyPairs -> No file or directory tools/proxies.txt
问:
所以代码是正确的,但似乎有些东西不起作用。此处的代理文件路径正确:C:\Users\duczl\OneDrive\Desktop\v2main\modules\tools\proxies.txt 我运行所有可能的诊断。 正如您在 utilityfetcher.py 中看到的,代码也是正确的
def GetProxyPairs():
try:
prox_pair = {}
# Use the full path to the "tools" directory
TOOLS_DIR = join(dirname(abspath(__file__)), "tools")
proxies_file_path = join(TOOLS_DIR, "proxies.txt")
print("Proxies file path:", proxies_file_path) # Print the path for debugging
with open(proxies_file_path, "r") as f:
proxy_list = f.readlines()
for i in range(len(proxy_list)):
proxy_list[i] = proxy_list[i].strip()
prox_pair[proxy_list[i].split("-")[0]] = proxy_list[i].split("-")[1]
proxy_list.clear()
except:
logger.PrintColored("Error in GetProxyPairs -> No file or directory tools/proxies.txt", "fail")
return {}
return prox_pair
如果有帮助,我在主源代码 idk 中也有这个
cookies = utility_fetcher.GetCookies()
proxy_pairs = utility_fetcher.GetProxyPairs()
bot_instances = []
粘贴在代理 .txt 中的代理是来自网络共享的代理,所以这也很好。Idk伙计们请帮帮我,我也使用绝对路径。
我想运行脚本并使其工作
答: 暂无答案
评论
C:\Users\duczl\OneDrive\Desktop\v2main\modules\tools\proxies.txt
print(os.listdir(r'C:\Users\duczl\OneDrive\Desktop\v2main\modules\tools'))