Skip to main content

A package for collecting TikTok videos and metadata.

Project description

Pyktok

$\color{red} NOTE:\ 7/9/24:\ \textbf{save\_tiktok\_multi\_page}\ and\ \textbf{save\_tiktok\_comments}\ work\ again!$

A simple module to collect video, text, and metadata from TikTok.

We developed Pyktok ("pick-tock") because none of the existing TikTok data collection utilities we could find suited our needs. Pyktok pulls its data directly from the JSON objects embedded in Tiktok pages and from hidden APIs with no public documentation. Here are its major features:

  • Download TikTok videos
  • Download video metadata
  • Download around 30 videos and/or metadata lines from hashtag, user, and the "You May Like" sections of video pages (you can try to specify the exact number but TikTok doesn't always follow it exactly)
  • Download video comments
  • Download full TikTok JSON data objects (in case you want to extract data from parts of the object not included in the above functions)

Like Pyktok? Want to say thanks (and help fund future updates)? I accept Venmo and Cash App.

R users, check out traktok, an R port of Pyktok.

This program may stop working suddenly if TikTok changes how it stores its data (see Freelon, 2018). Some functions may require you to be logged in to TikTok, which means they may not work on cloud servers that don't have Chrome or Firefox installed.

TikTok now offers an official research API to US-based academics--you can apply for access here.

Please note that a number of US states have banned TikTok on state-owned devices, which may include IT resources provided by state universities. Individuals employed by such institutions are advised to use Pyktok only within applicable laws and regulations.

Installation

pip install pyktok

Requirements

Pyktok relies on the following external packages:

Usage

import pyktok as pyk
pyk.specify_browser('chrome') #browser specification may or may not be necessary depending on your local settings

Historically it has been prudent to run the specify_browser function first to initialize Pyktok with a cookie from your browser of choice (e.g. 'firefox,' 'edge' etc.). However, recent developments indicate this may not be necessary for all users. YMMV.

Please note that functions that start with "get" will return data to working memory, while those starting with "save" will save data to disk without returning anything.

To download a single TikTok video and one line of metadata to the file "video_data.csv" ('chrome' can be changed to 'firefox' if necessary):

pyk.save_tiktok('https://www.tiktok.com/@tiktok/video/7106594312292453675?is_copy_url=1&is_from_webapp=v1',
	        True,
                'video_data.csv',
		'chrome')

To download another TikTok video and add its metadata to the same file as above:

pyk.save_tiktok('https://www.tiktok.com/@tiktok/video/7011536772089924869?is_copy_url=1&is_from_webapp=v1',
	        True,
                'video_data.csv',
		'chrome')

To download metadata ONLY from the video URLs used in the preceding two lines of code (to also download the videos, change False to True). If TikTok autobans the scraper, try changing the 1 to a higher number to increase the number of seconds between executions.

tiktok_videos = ['https://www.tiktok.com/@tiktok/video/7106594312292453675?is_copy_url=1&is_from_webapp=v1',
                 'https://www.tiktok.com/@tiktok/video/7011536772089924869?is_copy_url=1&is_from_webapp=v1']
pyk.save_tiktok_multi_urls(tiktok_videos,
                           False,
                     	  'tiktok_data.csv',
                     	   1)

To download around 30 metadata lines from a user page (you can get the videos by setting save_video to True):

pyk.save_tiktok_multi_page('tiktok',ent_type='user',save_video=False,metadata_fn='tiktok.csv')

If this or the following two functions delivers an EmptyResponseException, try setting headless=False.

To download around 30 metadata lines from a hashtag page:

pyk.save_tiktok_multi_page('datascience',ent_type='hashtag',save_video=False,metadata_fn='datascience.csv')

To download around 30 metadata lines from related videos from a video page:

pyk.save_tiktok_multi_page('https://www.tiktok.com/@tiktok/video/7106594312292453675',ent_type='video_related',save_video=False,metadata_fn='7106594312292453675.csv')

To download around 30 comments from a video (the underlying code interprets comment_count rather loosely):

pyk.save_tiktok_comments('https://www.tiktok.com/@tiktok/video/7106594312292453675',comment_count=30,save_comments=True,return_comments=False)

To get an individual video's JSON object:

tt_json = pyk.alt_get_tiktok_json('https://www.tiktok.com/@tiktok/video/7011536772089924869?is_copy_url=1&is_from_webapp=v1')

TikTok's servers may not love it if you run some of the above functions at full speed, so I recommend increasing the sleep parameter if you get autobanned. I haven't tested this extensively so I have no idea if or when autobans start to kick in.

Pyktok can also be run from a browser window using streamlit. To do so, simply navigate to your pyktok directory in a command prompt (it should contain the file app.py) and run streamlit run app.py. This should pop up a browser window that allows you to control Pyktok using graphical affordances.

Mostly written by @dfreelon with contributions from (in chronological order):

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

pyktok-0.0.30.tar.gz (11.7 kB view details)

Uploaded Source

Built Distribution

pyktok-0.0.30-py3-none-any.whl (9.8 kB view details)

Uploaded Python 3

File details

Details for the file pyktok-0.0.30.tar.gz.

File metadata

  • Download URL: pyktok-0.0.30.tar.gz
  • Upload date:
  • Size: 11.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.9

File hashes

Hashes for pyktok-0.0.30.tar.gz
Algorithm Hash digest
SHA256 368c2a1fa82cb672ddb97e1a4f2adf93d3dbf265cdf40c0e1d2089a11a68b3d0
MD5 d0c7dc95de9a94d272a3253b8242951c
BLAKE2b-256 75bd14ad2035108dc3e5bfb4c4ad1d9677e7ec598abc76cb50aa4ffbe0f5fff7

See more details on using hashes here.

File details

Details for the file pyktok-0.0.30-py3-none-any.whl.

File metadata

  • Download URL: pyktok-0.0.30-py3-none-any.whl
  • Upload date:
  • Size: 9.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.9

File hashes

Hashes for pyktok-0.0.30-py3-none-any.whl
Algorithm Hash digest
SHA256 79b92873f97751c2ec3f4071cf58ecc0627f4bc3c27203ca9b1813361de6f9e4
MD5 d361f8bf1c154358fc5a9958f0494ae7
BLAKE2b-256 064a916a02444d83074b5cedc201bdf5dad9200bcd76636b0451457ca48c6cb5

See more details on using hashes here.

Supported by

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