Json No Pass Mix Tiktok Database [50gb unzip]
- Thread starter
- Thread Author
- #1
55GB, (10GB compressed) Tiktok user sql users dump
This dataset is metadata for 32,489,068 TikTok videos, scraped between 2020-07-22 and 2020-10-13
The data is available as flat JSON, and as a MySQL database. There are probably minor inconsistancies between the two formats, but they should be 99% similar.
Everything in the JSON file is unaltered response from TikTok, the MySQL database is a bit more trimmed down
## Other Stats
In addition to the videos, there is metadata on:
DROP TABLE IF EXISTS
TABLE
PRIMARY KEY (
UNIQUE KEY
)
This dataset is metadata for 32,489,068 TikTok videos, scraped between 2020-07-22 and 2020-10-13
The data is available as flat JSON, and as a MySQL database. There are probably minor inconsistancies between the two formats, but they should be 99% similar.
Everything in the JSON file is unaltered response from TikTok, the MySQL database is a bit more trimmed down
## Other Stats
In addition to the videos, there is metadata on:
- 12,382,540 sounds
- 2,533,869 challenges (hashtags)
- 218,479 authors (video creators)
INSERT INTOauthor
VALUES (9112,6731603630543504389,'chriscartertiktok','Chris Carter','You must be logged in to see this link. post what I like..Funny.Sad. Enlightenment. Subscribe to my YouTube ðð¾ ð¯SC','False','MS4wLjABAAAAYk0gsa3aULQKiyZfmvEpPFSzFc8rUGrxmxmxQE9d3VdNIsYRJgTL7D8OIFl883jo',0,'2020-08-19 14:47:40','trending'),(9113,6801922511212397573,'itsmynatural','Melody','You must be logged in to see this link. Mama\nNatural Hair Lover\n27K?? ð','False','MS4wLjABAAAAib4JV3QN6s2RO8PdljCsrXv0ys9t9hwP0T3sVCtsc7wBwQDi5K88hxiCtgUfGDCo',0,'2020-08-19 14:47:41','trending'),
DROP TABLE IF EXISTS
author
;TABLE
author
(id
int(11) NOT NULL AUTO_INCREMENT,tiktok_id
bigint(20) unsigned NOT NULL,uniqueId
varchar(1024) NOT NULL,nickname
varchar(1024) NOT NULL,avatarLarger
varchar(2048) NOT NULL,signature
varchar(2048) NOT NULL,verified
varchar(8) NOT NULL,secUid
varchar(2048) NOT NULL,relation
int(11) NOT NULL,grabTime
timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),searchBase
varchar(64) NOT NULL,PRIMARY KEY (
id
),UNIQUE KEY
tiktok_id
(tiktok_id
))