-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathraw_socialblade.py
33 lines (32 loc) · 1.16 KB
/
raw_socialblade.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"""Bypass bot-detection to view SocialBlade ranks for YouTube"""
from seleniumbase import SB
with SB(uc=True, test=True, ad_block=True, pls="none") as sb:
url = "https://socialblade.com/"
sb.activate_cdp_mode(url)
sb.sleep(2)
sb.uc_gui_click_captcha()
sb.sleep(1)
channel_name = "michaelmintz"
channel_title = "Michael Mintz"
sb.cdp.press_keys('input[placeholder*="Search"]', channel_name)
sb.sleep(1.5)
sb.cdp.click('a:contains("%s")' % channel_title)
sb.sleep(2)
sb.cdp.remove_elements("#lngtd-top-sticky")
sb.sleep(1.5)
name = sb.cdp.get_text("h1")
source = sb.get_page_source()
base = "https://www.youtube.com/c/"
base2 = 'href="/youtube/c/'
start = source.find(base2) + len(base2)
end = source.find('"', start)
link = base + source[start:end]
print("********** SocialBlade Stats for %s: **********" % name)
print(">>> (Link: %s) <<<" % link)
print(sb.get_text('[class*="grid lg:hidden"]'))
print("********** SocialBlade Ranks: **********")
print(sb.get_text('[class*="gap-3 flex-1"]'))
for i in range(17):
sb.cdp.scroll_down(6)
sb.sleep(0.1)
sb.sleep(2)