https://github.com/anqipeng6/tiktok-api
The Unofficial TikTok API Wrapper In Python
Science Score: 10.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
○codemeta.json file
-
○.zenodo.json file
-
○DOI references
-
✓Academic publication links
Links to: zenodo.org -
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (11.8%) to scientific vocabulary
Last synced: 10 months ago
·
JSON representation
Repository
The Unofficial TikTok API Wrapper In Python
Basic Info
- Host: GitHub
- Owner: AnqiPeng6
- License: mit
- Language: Python
- Default Branch: main
- Homepage: https://davidteather.github.io/TikTok-Api
- Size: 27.1 MB
Statistics
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
- Releases: 0
Fork of davidteather/TikTok-Api
Created over 1 year ago
· Last pushed over 1 year ago
https://github.com/AnqiPeng6/TikTok-Api/blob/main/
# 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. [](https://zenodo.org/badge/latestdoi/188710490) [](https://www.linkedin.com/in/davidteather/) [](https://github.com/sponsors/davidteather) [](https://github.com/davidteather/TikTok-Api/releases) [](https://github.com/davidteather/TikTok-Api/blob/main/LICENSE) [](https://pypi.org/project/TikTokApi/)  [](https://discord.gg/yyPhbfma6f) This api is designed to **retrieve data** TikTok. It **can not be used post or upload** content to TikTok on the behalf of a user. It has **no support any user-authenticated routes**, if you can't access it while being logged out on their website you can't access it here. ## 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](https://github.com/sponsors/davidteather).## Table of Contents - [Documentation](#documentation) - [Getting Started](#getting-started) - [How to Support The Project](#how-to-support-the-project) - [Installing](#installing) - [Common Issues](#common-issues) - [Quick Start Guide](#quick-start-guide) - [Examples](https://github.com/davidteather/TikTok-Api/tree/main/examples) [**Upgrading from V5 to V6**](#upgrading-from-v5-to-v6) ## Documentation You can find the full documentation [here](https://davidteather.github.io/TikTok-Api) ## 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](https://github.com/davidteather/everything-web-scraping) ### How to Support The Project - Star the repo - Consider [sponsoring](https://github.com/sponsors/davidteather) me on GitHub - Send me an email or a [LinkedIn](https://www.linkedin.com/in/davidteather/) 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 **Note:** Installation requires python3.9+ 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. ```sh pip install TikTokApi python -m playwright install ``` If you would prefer a video walk through of setting up this package [YouTube video](https://www.youtube.com/watch?v=-uCt1x8kINQ) just for that. (is a version out of date, installation is the same though) If you want a quick video to listen for [TikTok Live](https://www.youtube.com/watch?v=307ijmA3_lc) 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. ```sh 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](https://github.com/microsoft/playwright-python) quickstart guide and diagnose issues from there. - **API methods returning Coroutine** - many of the API's methods are async so make sure your program awaits them for proper functionality ## 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](https://github.com/davidteather/TikTok-Api/tree/main/examples) directory. **Note:** If you want to learn how to web scrape websites check my [free and open-source course for web scraping](https://github.com/davidteather/web-scraping-with-reverse-engineering) ```py from TikTokApi import TikTokApi import asyncio import os ms_token = os.environ.get("ms_token", None) # get your own ms_token from your cookies on tiktok.com async def trending_videos(): async with TikTokApi() as api: await api.create_sessions(ms_tokens=[ms_token], num_sessions=1, sleep_after=3) async for video in api.trending.videos(count=30): print(video) print(video.as_dict) if __name__ == "__main__": asyncio.run(trending_videos()) ``` To directly run the example scripts from the repository root, use the `-m` option on python. ```sh python -m examples.trending_example ``` You can access the full data dictionary the object was created from with `.as_dict`. On a video this may look like [this](https://gist.github.com/davidteather/7c30780bbc30772ba11ec9e0b909e99d). 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 V5 to V6 All changes will be noted on [V6.0.0](https://github.com/davidteather/TikTok-Api/releases/tag/V6.0.0) if you want more information. ### Changes & Motivations - Maintainability - Was getting difficult to maintain with how TikTok was directly detecting HTTP requests. - Switched to using a pool of **async** playwright pages to make it more difficult to detect, and hopefully easier to maintain in the future - Async - It's been asked for a lot, and now fully async needed especially since the package is using a pool of playwright instances - User Flexibility - Added a lot of function argument options that should be much more explicit than what was done previously. - Hopefully if something is broken there's a workaround without having to modify the package itself (although if you do notice an issue please open an issue or submit a PR) - Documentation - Goes with user flexibility a little bit but switched over to sphinx documentation for more explicit content - If you run into an issue or are confused please open a github issue or submit a PR to fix documentation, it's always welcome! ### Upgrading Examples The biggest change is that everything is now async. You can see above how you might want to call an async function in python as well as the examples directory for more examples.
TikAPI is a paid TikTok API service providing a full out-of-the-box solution, making life easier for developers trusted by 500+ companies.
EnsembleData is the leading API provider for scraping Tiktok, Instagram, Youtube, and more.
Trusted by the major influencer marketing and social media listening platforms.
TikTok Captcha Solver: Bypass any TikTok captcha in just two lines of code.
Scale your TikTok automation and get unblocked with SadCaptcha.
Owner
- Login: AnqiPeng6
- Kind: user
- Repositories: 1
- Profile: https://github.com/AnqiPeng6
GitHub Events
Total
- Push event: 4
- Create event: 1
Last Year
- Push event: 4
- Create event: 1