-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplatforms.py
More file actions
18 lines (17 loc) · 1004 Bytes
/
platforms.py
File metadata and controls
18 lines (17 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Add platforms here
# url: use {username} as placeholder
# unreliable: True for JS-heavy sites that need manual check
PLATFORMS = [
{"name": "GitHub", "url": "https://github.com/{username}"},
{"name": "Reddit", "url": "https://www.reddit.com/user/{username}/about.json"},
{"name": "X", "url": "https://x.com/{username}", "unreliable": True},
{"name": "TikTok", "url": "https://www.tiktok.com/@{username}", "unreliable": True},
{"name": "GitLab", "url": "https://gitlab.com/{username}"},
{"name": "Bitbucket", "url": "https://bitbucket.org/{username}"},
{"name": "Dev.to", "url": "https://dev.to/{username}"},
{"name": "CodePen", "url": "https://codepen.io/{username}"},
{"name": "Dribbble", "url": "https://dribbble.com/{username}"},
{"name": "Behance", "url": "https://www.behance.net/{username}"},
{"name": "Hugging Face", "url": "https://huggingface.co/{username}"},
{"name": "Figma", "url": "https://www.figma.com/@{username}", "unreliable": True},
]