<p align="center">
<img src="https://github.com/wkaisertexas/tiktok-uploader/assets/27795014/f991fdc7-287a-4c3b-9a84-22c7ad8a57bf" alt="video working" />
</p>
<h1 align="center"> ⬆️ TikTok Uploader </h1>
<p align="center">A <strong>Selenium</strong>-based automated <strong>TikTok</strong> video uploader</p>
<p align="center">
<img alt="Forks" src="https://img.shields.io/github/forks/wkaisertexas/tiktok-uploader" />
<img alt="Stars" src="https://img.shields.io/github/stars/wkaisertexas/tiktok-uploader" />
<img alt="Watchers" src="https://img.shields.io/github/watchers/wkaisertexas/tiktok-uploader" />
</p>
<h1>Table of Contents</h1>
- [Installation](#installation)
- [MacOS, Windows and Linux](#macos-windows-and-linux)
- [Downloading from PyPI (Recommended)](#pypi)
- [Building from source](#building-from-source)
- [Usage](#usage)
- [💻 Command Line Interface (CLI)](#cli)
- [⬆ Uploading Videos](#uploading-videos)
- [🫵 Mentions and Hashtags](#mentions-and-hashtags)
- [🪡 Stitches, Duets and Comments](#stitches-duets-and-comments)
- [🌐 Proxy](#proxy)
- [📆 Schedule](#schedule)
- [🛍️ Product Link](#product-link)
- [🔐 Authentication](#authentication)
- [👀 Browser Selection](#browser-selection)
- [🚲 Custom WebDriver Options](#custom-webdriver)
- [🤯 Headless Browsers](#headless)
- [🔨 Initial Setup](#initial-setup)
- [♻️ Examples](#examples)
- [📝 Notes](#notes)
- [Accounts made with](#made-with)
# Installation
A prequisite to using this program is the installation of a [Selenium-compatible](https://www.selenium.dev/documentation/webdriver/getting_started/install_drivers/) web browser. [Google Chrome](https://www.google.com/chrome/) is recommended.
<h2 id="macos-windows-and-linux">MacOS, Windows and Linux</h2>
Install Python 3 or greater from [python.org](https://www.python.org/downloads/)
<h3 id="pypi">Downloading from PyPI (Recommended)</h3>
Install `tiktok-uploader` using `pip`
```bash
pip install tiktok-uploader
```
<h3 id="building-from-source">Building from source</h3>
Installing from source allows greater flexibility to modify the module's code to extend default behavior.
First, install [`uv`](https://docs.astral.sh/uv/getting-started/installation/) a really fast python package manager.
```bash
curl -LsSf https://astral.sh/uv/install.sh | sh
```
Next, clone the repository using `git`. Then change directories and run the project with `uv run tiktok-uploader`.
```bash
git clone https://github.com/wkaisertexas/tiktok-uploader
cd tiktok-uploader
uv run tiktok-uploader
```
After `uv` installs the required packages, you should see something like the following:
```console
usage: tiktok-uploader [-h] -v VIDEO [-d DESCRIPTION] [-t SCHEDULE] [--proxy PROXY] [--product-id PRODUCT_ID]
[-c COOKIES] [-s SESSIONID] [-u USERNAME] [-p PASSWORD] [--attach]
```
<h1 id="usage">Usage</h1>
`tiktok-uploader` works by duplicating your browser's **cookies** which tricks **TikTok** into believing you are logged in on a remote-controlled browser.
<h2 id="cli"> 💻 Command Line Interface (CLI)</h2>
Using the CLI is as simple as calling `tiktok-uploader` with your videos: `path` (-v), `description`(-d), and `cookies` (-c).
```bash
tiktok-uploader -v video.mp4 -d "this is my escaped \"description\"" -c cookies.txt
```
```python
from tiktok_uploader.upload import upload_video, upload_videos
from tiktok_uploader.auth import AuthBackend
# single video
upload_video('video.mp4', description='this is my description', cookies='cookies.txt')
# Multiple Videos
videos = [
{
'path': 'video.mp4',
'description': 'this is my description'
},
{
'path': 'video2.mp4',
'description': 'this is also my description'
}
]
auth = AuthBackend(cookies='cookies.txt')
upload_videos(videos=videos, auth=auth)
```
<h2 id="uploading-videos"> ⬆ Uploading Videos</h2>
This library revolves around the `upload_videos` function which takes in a list of videos which have **filenames** and **descriptions** and are passed as follows:
```python
from tiktok_uploader.upload import upload_videos
from tiktok_uploader.auth import AuthBackend
videos = [
{
'video': 'video0.mp4',
'description': 'Video 1 is about ...'
},
{
'video': 'video1.mp4',
'description': 'Video 2 is about ...'
}
]
auth = AuthBackend(cookies='cookies.txt')
failed_videos = upload_videos(videos=videos, auth=auth)
for video in failed_videos: # each input video object which failed
print(f"{video['video']} with description {video['description']} failed")
```
<h2 id="mentions-and-hashtags"> 🫵 Mentions and Hashtags</h2>
Mentions and Hashtags now work so long as they are followed by a space. However, **you** as the user **are responsible** for verifying a mention or hashtag exists before posting
```python
from tiktok_uploader.upload import upload_video
upload_video('video.mp4', '#fyp @icespicee', 'cookies.txt')
```
<h2 id="stitches-duets-and-comments"> 🪡 Stitches, Duets and Comments</h2>
To set whether or not a video uploaded allows stitches, comments or duet, simply specify `comment`, `stitch` and/or `duet` as keyword arguments to `upload_video` or `upload_videos`.
```python
upload_video(..., comment=True, stitch=True, duet=True)
```
> Comments, Stitches and Duets are allowed by **default**
<h2 id="proxy"> 🌐 Proxy</h2>
To set a proxy, currently only works with chrome as the browser, allow user:pass auth.
```python
# proxy = {'user': 'myuser', 'pass': 'mypass', 'host': '111.111.111', 'port': '99'} # user:pass
proxy = {'host': '111.111.111', 'port': '99'}
upload_video(..., proxy=proxy)
```
<h2 id="schedule"> 📆 Schedule</h2>
The datetime to schedule the video will be treated with the UTC timezone. <br>
The scheduled datetime must be at least 20 minutes in the future and a maximum of 10 days.
```python
import datetime
schedule = datetime.datetime(2020, 12, 20, 13, 00)
upload_video(..., schedule=schedule)
```
<h2 id="product-link"> 🛍️ Product Link</h2>
You can automatically add a product link to your uploaded video.
**Prerequisites:**
* Your TikTok account must be eligible to add showcase products to your videos.
* You need to obtain the product ID beforehand. To do this:
1. Go to the TikTok upload page in your browser.
2. Click the "Add link" button and select "Product".
3. A modal will appear showing your available showcase products along with their IDs.
4. Copy the ID of the product you want to link.
**Usage:**
Provide the `product_id` when calling the uploader.
**Command Line:**
```bash
tiktok-uploader -v video.mp4 -d "this is my description" -c cookies.txt --product-id YOUR_PRODUCT_ID
```
**Python:**
```python
from tiktok_uploader.upload import upload_video, upload_videos
from tiktok_uploader.auth import AuthBackend
# Single video
upload_video('video.mp4',
description='this is my description',
cookies='cookies.txt',
product_id='YOUR_PRODUCT_ID')
# Multiple videos
videos = [
{
'path': 'video.mp4',
'description': 'this is my description',
'product_id': 'YOUR_PRODUCT_ID_1' # Add product link to this video
},
{
'path': 'video2.mp4',
'description': 'this is also my description' # No product link for this video
}
]
auth = AuthBackend(cookies='cookies.txt')
upload_videos(videos=videos, auth=auth)
```
<h2 id="authentication"> 🔐 Authentication</h2>
Authentication uses your browser's cookies. This workaround was done due to TikTok's stricter stance on authentication by a Selenium-controlled browser.
Your `sessionid` is all that is required for authentication and can be passed as an argument to nearly any function
[🍪 Get cookies.txt](https://github.com/kairi003/Get-cookies.txt-LOCALLY) makes getting cookies in a [NetScape cookies format](http://fileformats.archiveteam.org/wiki/Netscape_cookies.txt).
After installing, open the extensions menu on [TikTok.com](https://tiktok.com/) and click `🍪 Get cookies.txt` to reveal your cookies. Select `Export As ⇩` and specify a location and name to save.
```python
upload_video(..., cookies='cookies.txt')
```
**Optionally**, `cookies_list` is a list of dictionaries with keys `name`, `value`, `domain`, `path` and `expiry` which allow you to pass your own browser cookies.
```python
cookies_list = [
{
'name': 'sessionid',
'value': '**your session id**',
'domain': 'https://tiktok.com',
'path': '/',
'expiry': '10/8/2023, 12:18:58 PM'
},
# the rest of your cookies all in a list
]
upload_video(..., cookies_list=cookies_list)
```
<h2 id="browser-selection"> 👀 Browser Selection</h2>
[Google Chrome](https://www.google.com/chrome) is the preferred browser for **TikTokUploader**. The default anti-detection techniques used in this packaged are optimized for this. However, if you wish to use a different browser you may specify the `browser` in `upload_video` or `upload_videos`.
```python
from tiktok_uploader.upload import upload_video
from random import choice
BROWSERS = [
'chrome',
'safari',
'chromium',
'edge',
'firefox'
]
# randomly picks a web browser
upload_video(..., browser=choice(BROWSERS))
```
✅ Supported Browsers:
- **Chrome** (Recommended)
- **Safari**
- **Chromium**
- **Edge**
- **FireFox**
<h2 id="custom-webdriver"> 🚲 Custom WebDriver Options</h2>
Default modifications to Selenium are applied which help it avoid being detected by TikTok.
However, you **may** pass a custom driver configuration options. Simply pass `options` as a keyword argument to either `upload_video` or `upload_videos`.
```python
from selenium.webdriver.chrome.options import Options
options = Options()
options.add_argument('start-maximized')
upload_videos(..., options=options)
```
> [!NOTE]
> Make sure to use the right selenium options for your browser
<h2 id="headless"> 🤯 Headless Browsers </h2>
Headless browsing only works on Chrome. When using Chrome, adding the `--headless` flag using the CLI or passing `headless` as a keyword argument to `upload_video` or `upload_videos` is all that is required.
```python
upload_video(..., headless=True)
upload_videos(..., headless=True)
```
<h2 id="initial-setup"> 🔨 Initial Setup</h2>
[WebDriverManager](https://bonigarcia.dev/webdrivermanager/) is used to manage driver versions.
On initial startup, you **may** be prompted to install the correct driver for your selected browser. However, for **Chrome** and **Edge** the driver is automatically installed.
<h2 id="examples"> ♻ Examples</h2>
- **[Basic Upload Example](examples/basic_upload.py):** Uses `upload_video` to make one post.
- **[Multiple Videos At Once](examples/multiple_videos_at_once.py):** Uploads the same video multiple times using `upload_videos`.
- **[Series Upload Example](examples/series_upload.py):** Videos are read from a CSV file using [Pandas](https://pandas.pydata.org). A video upload attempt is made and **if and only if** it is successful will the video be marked as uploaded.
<h2 id="notes"> 📝 Notes</h2>
This bot is **not fool proof**. Though I have not gotten an official ban, the video will fail to upload after too many uploads. In testing, waiting several hours was sufficient to fix this problem. For this reason, please think of this more as a scheduled uploader for TikTok videos, rather than a **spam bot.**
> [!IMPORTANT]
> If you like this project, please ⭐ it on GitHub to show your support! ❤️

Raw data
{
"_id": null,
"home_page": null,
"name": "tiktok-uploader",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.0",
"maintainer_email": null,
"keywords": "Automation, CLI, Command Line, Python, Selenium, TikTok, Upload, Video",
"author": null,
"author_email": "William Kaiser <wkaisertexas@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/a0/8c/72a0dea616a78d5f6d065760738c1fc7cc1fd67c99fa61a1a8f3b0f0f54e/tiktok_uploader-1.1.2.tar.gz",
"platform": null,
"description": "<p align=\"center\">\n<img src=\"https://github.com/wkaisertexas/tiktok-uploader/assets/27795014/f991fdc7-287a-4c3b-9a84-22c7ad8a57bf\" alt=\"video working\" />\n</p>\n\n<h1 align=\"center\"> \u2b06\ufe0f TikTok Uploader </h1>\n<p align=\"center\">A <strong>Selenium</strong>-based automated <strong>TikTok</strong> video uploader</p>\n\n<p align=\"center\">\n <img alt=\"Forks\" src=\"https://img.shields.io/github/forks/wkaisertexas/tiktok-uploader\" />\n <img alt=\"Stars\" src=\"https://img.shields.io/github/stars/wkaisertexas/tiktok-uploader\" />\n <img alt=\"Watchers\" src=\"https://img.shields.io/github/watchers/wkaisertexas/tiktok-uploader\" />\n</p>\n\n<h1>Table of Contents</h1>\n\n- [Installation](#installation)\n - [MacOS, Windows and Linux](#macos-windows-and-linux)\n - [Downloading from PyPI (Recommended)](#pypi)\n - [Building from source](#building-from-source)\n- [Usage](#usage)\n - [\ud83d\udcbb Command Line Interface (CLI)](#cli)\n - [\u2b06 Uploading Videos](#uploading-videos)\n - [\ud83e\udef5 Mentions and Hashtags](#mentions-and-hashtags)\n - [\ud83e\udea1 Stitches, Duets and Comments](#stitches-duets-and-comments)\n - [\ud83c\udf10 Proxy](#proxy)\n - [\ud83d\udcc6 Schedule](#schedule)\n - [\ud83d\udecd\ufe0f Product Link](#product-link)\n - [\ud83d\udd10 Authentication](#authentication)\n - [\ud83d\udc40 Browser Selection](#browser-selection)\n - [\ud83d\udeb2 Custom WebDriver Options](#custom-webdriver)\n - [\ud83e\udd2f Headless Browsers](#headless)\n - [\ud83d\udd28 Initial Setup](#initial-setup)\n- [\u267b\ufe0f Examples](#examples)\n- [\ud83d\udcdd Notes](#notes)\n- [Accounts made with](#made-with)\n\n# Installation\n\nA prequisite to using this program is the installation of a [Selenium-compatible](https://www.selenium.dev/documentation/webdriver/getting_started/install_drivers/) web browser. [Google Chrome](https://www.google.com/chrome/) is recommended.\n\n<h2 id=\"macos-windows-and-linux\">MacOS, Windows and Linux</h2>\n\nInstall Python 3 or greater from [python.org](https://www.python.org/downloads/)\n\n<h3 id=\"pypi\">Downloading from PyPI (Recommended)</h3>\n\nInstall `tiktok-uploader` using `pip`\n\n```bash\npip install tiktok-uploader\n```\n\n<h3 id=\"building-from-source\">Building from source</h3>\n\nInstalling from source allows greater flexibility to modify the module's code to extend default behavior.\n\nFirst, install [`uv`](https://docs.astral.sh/uv/getting-started/installation/) a really fast python package manager.\n\n```bash\ncurl -LsSf https://astral.sh/uv/install.sh | sh\n```\n\nNext, clone the repository using `git`. Then change directories and run the project with `uv run tiktok-uploader`.\n\n```bash\ngit clone https://github.com/wkaisertexas/tiktok-uploader\ncd tiktok-uploader\nuv run tiktok-uploader\n```\n\nAfter `uv` installs the required packages, you should see something like the following:\n\n```console\nusage: tiktok-uploader [-h] -v VIDEO [-d DESCRIPTION] [-t SCHEDULE] [--proxy PROXY] [--product-id PRODUCT_ID]\n [-c COOKIES] [-s SESSIONID] [-u USERNAME] [-p PASSWORD] [--attach]\n```\n\n<h1 id=\"usage\">Usage</h1>\n\n`tiktok-uploader` works by duplicating your browser's **cookies** which tricks **TikTok** into believing you are logged in on a remote-controlled browser.\n\n<h2 id=\"cli\"> \ud83d\udcbb Command Line Interface (CLI)</h2>\n\nUsing the CLI is as simple as calling `tiktok-uploader` with your videos: `path` (-v), `description`(-d), and `cookies` (-c).\n\n```bash\ntiktok-uploader -v video.mp4 -d \"this is my escaped \\\"description\\\"\" -c cookies.txt\n```\n\n```python\nfrom tiktok_uploader.upload import upload_video, upload_videos\nfrom tiktok_uploader.auth import AuthBackend\n\n# single video\nupload_video('video.mp4', description='this is my description', cookies='cookies.txt')\n\n# Multiple Videos\nvideos = [\n {\n 'path': 'video.mp4',\n 'description': 'this is my description'\n },\n {\n 'path': 'video2.mp4',\n 'description': 'this is also my description'\n }\n]\n\nauth = AuthBackend(cookies='cookies.txt')\nupload_videos(videos=videos, auth=auth)\n```\n\n<h2 id=\"uploading-videos\"> \u2b06 Uploading Videos</h2>\n\nThis library revolves around the `upload_videos` function which takes in a list of videos which have **filenames** and **descriptions** and are passed as follows:\n\n```python\nfrom tiktok_uploader.upload import upload_videos\nfrom tiktok_uploader.auth import AuthBackend\n\nvideos = [\n {\n 'video': 'video0.mp4',\n 'description': 'Video 1 is about ...'\n },\n {\n 'video': 'video1.mp4',\n 'description': 'Video 2 is about ...'\n }\n]\n\nauth = AuthBackend(cookies='cookies.txt')\nfailed_videos = upload_videos(videos=videos, auth=auth)\n\nfor video in failed_videos: # each input video object which failed\n print(f\"{video['video']} with description {video['description']} failed\")\n```\n\n<h2 id=\"mentions-and-hashtags\"> \ud83e\udef5 Mentions and Hashtags</h2>\n\nMentions and Hashtags now work so long as they are followed by a space. However, **you** as the user **are responsible** for verifying a mention or hashtag exists before posting\n\n```python\nfrom tiktok_uploader.upload import upload_video\n\nupload_video('video.mp4', '#fyp @icespicee', 'cookies.txt')\n```\n\n<h2 id=\"stitches-duets-and-comments\"> \ud83e\udea1 Stitches, Duets and Comments</h2>\n\nTo set whether or not a video uploaded allows stitches, comments or duet, simply specify `comment`, `stitch` and/or `duet` as keyword arguments to `upload_video` or `upload_videos`.\n\n```python\nupload_video(..., comment=True, stitch=True, duet=True)\n```\n\n> Comments, Stitches and Duets are allowed by **default**\n\n<h2 id=\"proxy\"> \ud83c\udf10 Proxy</h2>\n\nTo set a proxy, currently only works with chrome as the browser, allow user:pass auth.\n\n```python\n# proxy = {'user': 'myuser', 'pass': 'mypass', 'host': '111.111.111', 'port': '99'} # user:pass\nproxy = {'host': '111.111.111', 'port': '99'}\nupload_video(..., proxy=proxy)\n```\n\n<h2 id=\"schedule\"> \ud83d\udcc6 Schedule</h2>\n\nThe datetime to schedule the video will be treated with the UTC timezone. <br>\nThe scheduled datetime must be at least 20 minutes in the future and a maximum of 10 days.\n\n```python\nimport datetime\nschedule = datetime.datetime(2020, 12, 20, 13, 00)\nupload_video(..., schedule=schedule)\n```\n\n<h2 id=\"product-link\"> \ud83d\udecd\ufe0f Product Link</h2>\n\nYou can automatically add a product link to your uploaded video.\n\n**Prerequisites:**\n\n* Your TikTok account must be eligible to add showcase products to your videos.\n* You need to obtain the product ID beforehand. To do this:\n 1. Go to the TikTok upload page in your browser.\n 2. Click the \"Add link\" button and select \"Product\".\n 3. A modal will appear showing your available showcase products along with their IDs.\n 4. Copy the ID of the product you want to link.\n\n**Usage:**\n\nProvide the `product_id` when calling the uploader.\n\n**Command Line:**\n\n```bash\ntiktok-uploader -v video.mp4 -d \"this is my description\" -c cookies.txt --product-id YOUR_PRODUCT_ID\n```\n\n**Python:**\n\n```python\nfrom tiktok_uploader.upload import upload_video, upload_videos\nfrom tiktok_uploader.auth import AuthBackend\n\n# Single video\nupload_video('video.mp4',\n description='this is my description',\n cookies='cookies.txt',\n product_id='YOUR_PRODUCT_ID')\n\n# Multiple videos\nvideos = [\n {\n 'path': 'video.mp4',\n 'description': 'this is my description',\n 'product_id': 'YOUR_PRODUCT_ID_1' # Add product link to this video\n },\n {\n 'path': 'video2.mp4',\n 'description': 'this is also my description' # No product link for this video\n }\n]\n\nauth = AuthBackend(cookies='cookies.txt')\nupload_videos(videos=videos, auth=auth)\n```\n\n<h2 id=\"authentication\"> \ud83d\udd10 Authentication</h2>\n\nAuthentication uses your browser's cookies. This workaround was done due to TikTok's stricter stance on authentication by a Selenium-controlled browser.\n\nYour `sessionid` is all that is required for authentication and can be passed as an argument to nearly any function\n\n[\ud83c\udf6a Get cookies.txt](https://github.com/kairi003/Get-cookies.txt-LOCALLY) makes getting cookies in a [NetScape cookies format](http://fileformats.archiveteam.org/wiki/Netscape_cookies.txt).\n\nAfter installing, open the extensions menu on [TikTok.com](https://tiktok.com/) and click `\ud83c\udf6a Get cookies.txt` to reveal your cookies. Select `Export As \u21e9` and specify a location and name to save.\n\n```python\nupload_video(..., cookies='cookies.txt')\n```\n\n**Optionally**, `cookies_list` is a list of dictionaries with keys `name`, `value`, `domain`, `path` and `expiry` which allow you to pass your own browser cookies.\n\n```python\ncookies_list = [\n {\n 'name': 'sessionid',\n 'value': '**your session id**',\n 'domain': 'https://tiktok.com',\n 'path': '/',\n 'expiry': '10/8/2023, 12:18:58 PM'\n },\n # the rest of your cookies all in a list\n]\n\nupload_video(..., cookies_list=cookies_list)\n```\n\n<h2 id=\"browser-selection\"> \ud83d\udc40 Browser Selection</h2>\n\n[Google Chrome](https://www.google.com/chrome) is the preferred browser for **TikTokUploader**. The default anti-detection techniques used in this packaged are optimized for this. However, if you wish to use a different browser you may specify the `browser` in `upload_video` or `upload_videos`.\n\n```python\nfrom tiktok_uploader.upload import upload_video\n\nfrom random import choice\n\nBROWSERS = [\n 'chrome',\n 'safari',\n 'chromium',\n 'edge',\n 'firefox'\n]\n\n# randomly picks a web browser\nupload_video(..., browser=choice(BROWSERS))\n```\n\n\u2705 Supported Browsers:\n\n- **Chrome** (Recommended)\n- **Safari**\n- **Chromium**\n- **Edge**\n- **FireFox**\n\n<h2 id=\"custom-webdriver\"> \ud83d\udeb2 Custom WebDriver Options</h2>\n\nDefault modifications to Selenium are applied which help it avoid being detected by TikTok.\n\nHowever, you **may** pass a custom driver configuration options. Simply pass `options` as a keyword argument to either `upload_video` or `upload_videos`.\n\n```python\nfrom selenium.webdriver.chrome.options import Options\n\noptions = Options()\n\noptions.add_argument('start-maximized')\n\nupload_videos(..., options=options)\n```\n\n\n> [!NOTE]\n> Make sure to use the right selenium options for your browser\n\n<h2 id=\"headless\"> \ud83e\udd2f Headless Browsers </h2>\n\nHeadless browsing only works on Chrome. When using Chrome, adding the `--headless` flag using the CLI or passing `headless` as a keyword argument to `upload_video` or `upload_videos` is all that is required.\n\n```python\nupload_video(..., headless=True)\nupload_videos(..., headless=True)\n```\n\n<h2 id=\"initial-setup\"> \ud83d\udd28 Initial Setup</h2>\n\n[WebDriverManager](https://bonigarcia.dev/webdrivermanager/) is used to manage driver versions.\n\nOn initial startup, you **may** be prompted to install the correct driver for your selected browser. However, for **Chrome** and **Edge** the driver is automatically installed.\n\n<h2 id=\"examples\"> \u267b Examples</h2>\n\n- **[Basic Upload Example](examples/basic_upload.py):** Uses `upload_video` to make one post.\n\n- **[Multiple Videos At Once](examples/multiple_videos_at_once.py):** Uploads the same video multiple times using `upload_videos`.\n\n- **[Series Upload Example](examples/series_upload.py):** Videos are read from a CSV file using [Pandas](https://pandas.pydata.org). A video upload attempt is made and **if and only if** it is successful will the video be marked as uploaded.\n\n<h2 id=\"notes\"> \ud83d\udcdd Notes</h2>\n\nThis bot is **not fool proof**. Though I have not gotten an official ban, the video will fail to upload after too many uploads. In testing, waiting several hours was sufficient to fix this problem. For this reason, please think of this more as a scheduled uploader for TikTok videos, rather than a **spam bot.**\n\n> [!IMPORTANT]\n> If you like this project, please \u2b50 it on GitHub to show your support! \u2764\ufe0f\n\n\n",
"bugtrack_url": null,
"license": null,
"summary": "An automatic TikTok video uploader w/ CLI. Uploads videos automatically using an automated browser and your cookies for authentication.",
"version": "1.1.2",
"project_urls": {
"Bug Tracker": "https://github.com/wkaisertexas/tiktok-uploader/issues",
"Source Code": "https://github.com/wkaisertexas/tiktok-uploader"
},
"split_keywords": [
"automation",
" cli",
" command line",
" python",
" selenium",
" tiktok",
" upload",
" video"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "2b4818f7c7d7ea5064033017cd7329c56c2d357dcd4010f4deea287e6033a153",
"md5": "d7113455a7f650cdbdd746d7a2407a2b",
"sha256": "875d2f561a1bdbeb1411d6540d30ea3961f07247ee3a160e02f1456cee9a4c0f"
},
"downloads": -1,
"filename": "tiktok_uploader-1.1.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "d7113455a7f650cdbdd746d7a2407a2b",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.0",
"size": 27578,
"upload_time": "2025-07-26T22:37:21",
"upload_time_iso_8601": "2025-07-26T22:37:21.187301Z",
"url": "https://files.pythonhosted.org/packages/2b/48/18f7c7d7ea5064033017cd7329c56c2d357dcd4010f4deea287e6033a153/tiktok_uploader-1.1.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a08c72a0dea616a78d5f6d065760738c1fc7cc1fd67c99fa61a1a8f3b0f0f54e",
"md5": "f59e44793940f91eabc9b583dcd2a0cd",
"sha256": "1fec5d841de039967678e9962dc2ffa1def05b9927eac2367283fbc9574ca84d"
},
"downloads": -1,
"filename": "tiktok_uploader-1.1.2.tar.gz",
"has_sig": false,
"md5_digest": "f59e44793940f91eabc9b583dcd2a0cd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.0",
"size": 124680,
"upload_time": "2025-07-26T22:37:22",
"upload_time_iso_8601": "2025-07-26T22:37:22.386998Z",
"url": "https://files.pythonhosted.org/packages/a0/8c/72a0dea616a78d5f6d065760738c1fc7cc1fd67c99fa61a1a8f3b0f0f54e/tiktok_uploader-1.1.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-26 22:37:22",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "wkaisertexas",
"github_project": "tiktok-uploader",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "tiktok-uploader"
}