Skip to main content

The Unofficial TikTok API Wrapper in Python 3. (async)

Project description

TikTokApi-Async

this is a hackerman async fork of TikTok-Api used in one of our sites, fftiktok.com.

this fork is only for compatibility with async environments such as quart. it is not intended to make non-async behavior async.

support is not provided, but if you find a bug, make an issue, and let me know at tiktokapi-async@viomck.com, you might just find it fixed.

the original README is below, s/TikTokApi/TikTokApi-Async for the package name.

Unofficial TikTok API in Python

This is an unofficial api wrapper for TikTok.com in python. With this api you are able to call most trending and fetch specific user information as well as much more.

DOI LinkedIn Sponsor Me GitHub release (latest by date) Build Status GitHub Downloads Support Server

Sponsors

These sponsors have paid to be placed here and beyond that I do not have any affiliation with them, the TikTokAPI package will always be free and open-source. If you wish to be a sponsor of this project check out my GitHub sponsors page.



Table of Contents

Upgrading from V4 to V5

Documentation

You can find the full documentation here, the TikTokApi Class is where you'll probably spend most of your time.

Getting Started

To get started using this api follow the instructions below.

Note: If you want to learn how to web scrape websites check my free and open-source course for learning everything web scraping

How to Support The Project

  • Star the repo 😎
  • Consider sponsoring me on GitHub
  • Send me an email or a LinkedIn message telling me what you're using the API for, I really like hearing what people are using it for.
  • Submit PRs for issues :)

Installing

If you run into an issue please check the closed issues on the github, although feel free to re-open a new issue if you find an issue that's been closed for a few months. The codebase can and does run into similar issues as it has before, because TikTok changes things up.

pip install TikTokApi-Async
python -m playwright install

If you would prefer a video walk through of setting up this package YouTube video just for that.

If you want a quick video to listen for TikTok Live events in python.

Docker Installation

Clone this repository onto a local machine (or just the Dockerfile since it installs TikTokApi from pip) then run the following commands.

docker pull mcr.microsoft.com/playwright:focal
docker build . -t tiktokapi:latest
docker run -v TikTokApi --rm tiktokapi:latest python3 your_script.py

Note this assumes your script is named your_script.py and lives in the root of this directory.

Common Issues

Please don't open an issue if you're experiencing one of these just comment if the provided solution do not work for you.

  • Browser Has no Attribute - make sure you ran python3 -m playwright install, if your error persists try the playwright-python quickstart guide and diagnose issues from there.

Quick Start Guide

Here's a quick bit of code to get the most recent trending videos on TikTok. There's more examples in the examples directory.

Note: If you want to learn how to web scrape websites check my free and open-source course for web scraping

from TikTokApi import TikTokApi

# Watch https://www.youtube.com/watch?v=-uCt1x8kINQ for a brief setup tutorial
with TikTokApi() as api:
    for trending_video in api.trending.videos(count=50):
        # Prints the author's username of the trending video.
        print(trending_video.author.username)

Note: Jupyter (ipynb) only works on linux, see microsoft/playwright-python #178

To run the example scripts from the repository root, make sure you use the -m option on python.

python -m examples.get_trending

You can access the dictionary type of an object using .as_dict. On a video this may look like this, although TikTok changes their structure from time to time so it's worth investigating the structure of the dictionary when you use this package.

Upgrading from V4 to V5

All changes will be noted on #803 if you want more information.

Motivation

This package has been difficult to maintain due to it's structure, difficult to work with since the user of the package must write parsing methods to extract information from dictionaries, more memory intensive than it needs to be (although this can be further improved), and in general just difficult to work with for new users.

As a result, I've decided to at least attempt to remedy some of these issues, the biggest changes are that

  1. The package has shifted to using classes for different TikTok objects resulting in an easier, higher-level programming experience.
  2. All methods that used to return a list of objects have been switched to using iterators, to hopefully decrease memory utilization for most users.

Upgrading Examples

Accessing Dictionary on Objects (similar to V4)

You'll probably need to use this beyond just for legacy support, since not all attributes are parsed out and attached to the different objects.

You may want to use this as a workaround for legacy applications while you upgrade the rest of the app. I'd suggest that you do eventually upgrade to using the higher-level approach fully.

user = api.user(username='therock')
user.as_dict # -> dict of the user_object
for video in user.videos():
    video.as_dict # -> dict of TikTok's video object as found when requesting the videos endpoint

Here's a few more examples that help illustrate the differences in the flow of the usage of the package with V5.

# V4
api = TikTokApi.get_instance()
trending_videos = api.by_trending()

#V5.1
with TikTokApi() as api: # .get_instance no longer exists
    for trending_video in api.trending.videos():
        # do something

Where in V4 you had to extract information yourself, the package now handles that for you. So it's much easier to do chained related function calls.

# V4
trending_videos = api.by_trending()
for video in trending_videos:
    # The dictionary responses are also different depending on what endpoint you got them from
    # So, it's usually more painful than this to deal with
    trending_user = api.get_user(id=video['author']['id'], secUid=video['author']['secUid'])


# V5
# This is more complicated than above, but it illustrates the simplified approach
for trending_video in api.trending.videos():
    user_stats = trending_video.author.info_full['stats']
    if user_stats['followerCount'] >= 10000:
        # maybe save the user in a database

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

TikTokApi-Async-5.2.2.tar.gz (66.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

TikTokApi_Async-5.2.2-py3-none-any.whl (74.7 kB view details)

Uploaded Python 3

File details

Details for the file TikTokApi-Async-5.2.2.tar.gz.

File metadata

  • Download URL: TikTokApi-Async-5.2.2.tar.gz
  • Upload date:
  • Size: 66.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for TikTokApi-Async-5.2.2.tar.gz
Algorithm Hash digest
SHA256 e432bee8961cbff6ac76f47118a67f8aa8e05949753c7618c7560e7783eb663b
MD5 d032309828a30bd812a279202dc22209
BLAKE2b-256 44d7503b7fe827a8c87f3016d64fe43cd1b7922720c7f19ba088d8e47ed63681

See more details on using hashes here.

File details

Details for the file TikTokApi_Async-5.2.2-py3-none-any.whl.

File metadata

File hashes

Hashes for TikTokApi_Async-5.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 43ac99cecb94eba6714c02c52722d865472c69095ca51078692e79a190d96fd2
MD5 10cc98b65b57661d2e27bfe4780b0d21
BLAKE2b-256 43513ab6096de759905ff835f075c3a5e633fe430518d154b2dc613eaf1af06a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page