From 4064dfb239bf29f6b77b12d7216da7d6b5a4875f Mon Sep 17 00:00:00 2001 From: Evil0ctal Date: Fri, 2 Sep 2022 14:42:21 -0700 Subject: [PATCH] =?UTF-8?q?=E2=9C=8D=20Correct=20proxy=20error?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 42e12d6..8160b16 100644 --- a/README.md +++ b/README.md @@ -132,7 +132,7 @@ tiktok_data = api.tiktok(input('TikTok video URL:')) print(tiktok_data) # 使用代理进行解析(Parse using a proxy) -api.tiktok(input('TikTok video URL:'), proxies = {'all': 127.0.0.1:2333}) +api.tiktok(input('TikTok video URL:'), proxies = {"all": "127.0.0.1:2333"}) ```