Skip to content

Commit 2f2b4ac

Browse files
committed
V1.0.7 beta
1 parent bd77390 commit 2f2b4ac

File tree

20 files changed

+39
-28
lines changed

20 files changed

+39
-28
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
setup(
1515
name="tikhub",
16-
version="1.0.6",
16+
version="1.0.7",
1717
author="TikHub.io",
1818
author_email="tikhub.io@proton.me",
1919
description="A Python SDK for TikHub RESTful API",

tikhub/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# __init__.py
2+
from .client import Client
3+
4+
__all__ = ["Client"]

tikhub/api/v1/endpoints/captcha/captcha_solver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# 导入API SDK Client
2-
from tikhub.client.api_client import APIClient
2+
from tikhub.http_client.api_client import APIClient
33

44
@router.get("/test", response_model=ResponseModel, summary="测试接口")
55
async def test(request: Request):

tikhub/api/v1/endpoints/douyin/app/douyin_app_v1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 导入API SDK Client类
22

3-
from tikhub.client.api_client import APIClient
3+
from tikhub.http_client.api_client import APIClient
44

55

66
class DouyinAppV1:

tikhub/api/v1/endpoints/douyin/app/douyin_app_v2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# 导入API SDK Client类
22

3-
from tikhub.client.api_client import APIClient
3+
from tikhub.http_client.api_client import APIClient
44

55
# 标记已废弃的方法
6-
from tikhub.client.deprecated import deprecated
6+
from tikhub.http_client.deprecated import deprecated
77

88

99
class DouyinAppV2:

tikhub/api/v1/endpoints/douyin/app/douyin_app_v3.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# 导入API SDK Client类
22

3-
from tikhub.client.api_client import APIClient
3+
from tikhub.http_client.api_client import APIClient
44

55
# 标记已废弃的方法
6-
from tikhub.client.deprecated import deprecated
6+
from tikhub.http_client.deprecated import deprecated
77

88

99
class DouyinAppV3:

tikhub/api/v1/endpoints/douyin/web/douyin_web.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# 导入API SDK Client类
22
import json
33

4-
from tikhub.client.api_client import APIClient
4+
from tikhub.http_client.api_client import APIClient
55

66

77
class DouyinWeb:

tikhub/api/v1/endpoints/instagram/web/instagram_web.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# 导入API SDK Client类
22
import json
33

4-
from tikhub.client.api_client import APIClient
4+
from tikhub.http_client.api_client import APIClient
55

66

77
class InstagramWeb:

tikhub/api/v1/endpoints/tikhub/tikhub_user.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# 导入API SDK Client类
22
import json
33

4-
from tikhub.client.api_client import APIClient
4+
from tikhub.http_client.api_client import APIClient
55

66

77
class TikHubUser:

tikhub/api/v1/endpoints/tiktok/app/tiktok_app_v2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# 导入API SDK Client类
22
import json
33

4-
from tikhub.client.api_client import APIClient
4+
from tikhub.http_client.api_client import APIClient
55

66

77
class TikTokAppV2:

0 commit comments

Comments
 (0)