TikTokPy
自动化社交媒体互动以在TikTok上“农场”点赞和关注者的工具
快速开始
import asyncio
from tiktokpy import TikTokPy
async def main ():
async with TikTokPy () as bot :
# Do you want to get trending videos? You can!
trending_items = await bot . trending ( amount = 5 )
for item in trending_items :
# :red_heart: you can like videos
await bot . like ( item )
# or unlike t
1