Skip to content

Commit 609d109

Browse files
docs: Added README."en".md translation via https://github.com/dephraiim/translate-readme
1 parent db75875 commit 609d109

File tree

1 file changed

+30
-5
lines changed

1 file changed

+30
-5
lines changed

README.en.md

+30-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
#### **Introduction**
77

8-
🎉「[TikHub.io](https://tikhub.io/)"Is a**开箱即用的集成工具以及服务的平台**, our goal is to help users quickly start business and support function customization. Our vision is to form a community entrepreneurship project. A single tree cannot grow into a forest, but cooperation can lead to win-win results.**Every community member has the opportunity to integrate the functions or interfaces they write into our platform and benefit from them**. We have accumulated a large number of registered users and community users, and in order to realize this vision, we are actively planning and implementing cooperation strategies to ensure the sustainable and healthy development of the ecosystem. Welcome everyone to join us[Discord](https://discord.gg/aMEAS8Xsvz)Community.
8+
🎉「[TikHub.io](https://tikhub.io/)"Is a**A platform for out-of-the-box integration tools and services**, our goal is to help users quickly start business and support function customization. Our vision is to form a community entrepreneurship project. A single tree cannot grow into a forest, but cooperation can lead to a win-win situation.**Every community member has the opportunity to integrate the functions or interfaces they write into our platform and benefit from them**. We have accumulated a large number of registered users and community users, and in order to realize this vision, we are actively planning and implementing cooperation strategies to ensure the sustainable and healthy development of the ecosystem. Welcome everyone to join us[Discord](https://discord.gg/aMEAS8Xsvz)Community.
99

1010
#### Remark
1111

@@ -24,6 +24,7 @@
2424
- [Instagram Web and APP data interface](https://api.tikhub.io/#/Instagram-Web-And-APP-API)
2525
- [YouTube web data interface](https://api.tikhub.io/#/YouTube-Web-API)
2626
- [NetEase Cloud Music App Data Interface](https://api.tikhub.io/#/NetEase-Cloud-Music-API)
27+
- [Twitter web data interface](https://api.tikhub.io/#/Twitter-Web-API)
2728
- [Verification code bypass interface](https://api.tikhub.io/#/Captcha-Solver)
2829
- [Temporary mailbox interface](https://api.tikhub.io/#/Temp-Mail-API)
2930
- Please report any issues or bugs to[Discord server](https://discord.gg/aMEAS8Xsvz)
@@ -87,7 +88,7 @@ Please do not share your API Token, as this may cause you property damage and ot
8788
pip install tikhub
8889
```
8990

90-
- Import SDK
91+
- 导入SDK
9192

9293
```python
9394
from tikhub import Client
@@ -174,16 +175,35 @@ self.YouTubeWeb = YouTubeWeb(self.client)
174175
# 网易云音乐APP | NetEase Cloud Music APP
175176
self.NetEaseCloudMusicAppV1 = NetEaseCloudMusicAppV1(self.client)
176177

178+
# Twitter Web | Twitter网页端
179+
self.TwitterWeb = TwitterWeb(self.client)
180+
177181
# Hybrid Parsing
178182
self.HybridParsing = HybridParsing(self.client)
179183
```
180184

181185
- use`DouyinAppV1`of`fetch_one_video`The method calls the interface to obtain single video data.
182186

183187
```python
184-
# 获取单个作品数据 | Get single video data
185-
video_data = await client.DouyinAppV1.fetch_one_video(aweme_id="7345492945006595379")
186-
print(video_data)
188+
# 导入异步io库 | Import asyncio
189+
import asyncio
190+
191+
# 导入tikhub | Import tikhub
192+
from tikhub import Client
193+
194+
# 初始化Client | Initialize Client
195+
client = Client(base_url="https://api.tikhub.io",
196+
api_key="YOUR_API_TOKEN",
197+
proxies=None,
198+
max_retries=3,
199+
max_connections=50,
200+
timeout=60,
201+
max_tasks=50)
202+
203+
if __name__ == "__main__":
204+
# 获取单个作品数据 | Get single video data
205+
video_data = asyncio.run(client.DouyinAppV1.fetch_one_video(aweme_id="7345492945006595379"))
206+
print(video_data)
187207
```
188208

189209
- We have used HTTPX to asynchronously encapsulate most endpoints. If your code is executed synchronously, you can use the following code to prevent asynchronous infection.
@@ -223,6 +243,11 @@ def fetch_one_video(aweme_id: str):
223243
# 关闭异步事件循环
224244
# Close the asynchronous event
225245
loop.close()
246+
247+
# 调用fetch_one_video方法 | Call the fetch_one_video method
248+
if __name__ == "__main__":
249+
video_data = fetch_one_video(aweme_id="7345492945006595379")
250+
print(video_data)
226251
```
227252

228253
- Due to the limited chapters, the complete methods are not listed here. You can view the methods implemented in each attribute by viewing the source code. Each method is named according to the endpoint.`uri`to name, for example`/api/v1/douyin/app/v1/fetch_one_video`The method name is`fetch_one_video`, you can find the corresponding method according to the endpoint in the API document.

0 commit comments

Comments
 (0)