pryscraper/templates/tiktok-profile.json
cryptorugmunch 8d25702eca chore(license): re-license to dual MIT (core) + BSL 1.1 (stealth)
Squashed from chore/license-relicense. Full message preserved in the
original branch commit bb77eb5. See ADR-0002 for the decision rationale.

Refs: ADR-0002, commit bb77eb5
2026-07-02 19:59:18 +02:00

50 lines
No EOL
1.3 KiB
JSON

{
"name": "TikTok Profile",
"description": "Extract profile info from TikTok",
"site": "tiktok.com",
"category": "social",
"icon": "\ud83c\udfb5",
"schema": {
"name": "tiktok_profile",
"base_selector": "body",
"fields": [
{
"name": "username",
"selector": "h1, [class*='share-title'], [data-e2e='user-title']",
"type": "text"
},
{
"name": "bio",
"selector": "h2, [class*='share-desc'], [data-e2e='user-desc']",
"type": "text"
},
{
"name": "followers",
"selector": "[class*='follower-count'], strong:contains('Followers')",
"type": "text",
"transform": "int"
},
{
"name": "following",
"selector": "[class*='following-count'], strong:contains('Following')",
"type": "text",
"transform": "int"
},
{
"name": "likes",
"selector": "[class*='like-count'], strong:contains('Likes')",
"type": "text",
"transform": "int"
},
{
"name": "avatar",
"selector": "[class*='avatar'] img",
"type": "attribute",
"attribute": "src"
}
]
},
"url_pattern": "*://www.tiktok.com/*",
"_license": "MIT",
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
}