SkillAgentSearch skills...

Tiktokpy

Tool for automated TikTok interactions

Install / Use

/learn @sudoguy/Tiktokpy
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

<h1 align="center" style="font-size: 3rem;"> TikTokPy </h1> <p align="center"> <em>Tooling that <b>automates</b> your social media interactions to “farm” Likes and Followers on TikTok</em></p> <p align="center"> <a href="https://github.com/sudoguy/tiktokpy/actions/workflows/test_and_publish.yml"> <img src="https://github.com/sudoguy/tiktokpy/actions/workflows/test_and_publish.yml/badge.svg" alt="Build Status"> </a> <a href="https://pypi.org/project/tiktokpy/"> <img src="https://badge.fury.io/py/tiktokpy.svg" alt="Package version"> </a> </p>

Quickstart.py

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:
            # ❤️ you can like videos
            await bot.like(item)
            # or unlike them
            await bot.unlike(item)
            # or follow users
            await bot.follow(item.author.username)
            # as and unfollow
            await bot.unfollow(item.author.username)

        # 😏 getting user's feed
        user_feed_items = await bot.user_feed(username="tiktok", amount=5)

        for item in user_feed_items:
            # 🎧 get music title, cover, link, author name..
            print("Music title: ", item.music.title)
            # #️⃣ print all tag's title of video
            print([tag.title for tag in item.challenges])
            # 📈 check all video stats
            print("Comments: ", item.stats.comments)
            print("Plays: ", item.stats.plays)
            print("Shares: ", item.stats.shares)
            print("Likes: ", item.stats.likes)

        # and many other things 😉


asyncio.run(main())

Installation

Install with pip:

pip install tiktokpy

Install browser by playwright

playwright install firefox

Run

To create your cookies and settings.toml file simply run

python quicklogin.py

and then after you login run

python quickstart.py
View on GitHub
GitHub Stars841
CategoryDevelopment
Updated1h ago
Forks163

Languages

Python

Security Score

100/100

Audited on Apr 9, 2026

No findings