-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofiles_in_kp.py
38 lines (33 loc) · 1.07 KB
/
profiles_in_kp.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
34
35
36
37
38
tw = 'twitter.com'
yt = 'youtube.com'
fb = 'facebook.com'
li = 'linkedin.com'
ig = 'instagram.com'
pin = 'pinterest.com'
# this is a list I prepared of which UGC platforms appeared in the knowledge panel for various queries.
# this is the result of looking at one page per query only, i.e. this is not systematic.
queries = {
'al franken': [tw, yt, fb],
'Bank of America': [fb, li, tw],
'Chase Bank': [li, tw, yt],
'Chevrolet': [tw, yt, fb],
"Domino's Pizza": [fb, tw, ig],
'Donald Trump': [tw, fb, yt],
'eagles': [tw, yt, fb],
'Honda': [yt, fb, tw],
"McDonald's": [tw, yt, fb],
'michael flynn': [tw],
'Pizza Hut': [fb, tw, yt],
'ryan shazier': [tw, fb, ig],
'Target Corporation': [fb, yt, li],
'Toyota': [fb, tw, yt],
'United States Department of Veterans Affairs': [fb, yt, tw],
'Walmart': [fb, tw, pin],
'Wells Fargo': [fb, li, tw],
# extra,
'geico': [fb, tw, yt],
'geico insurance': [yt, fb, li],
'progressive': [fb, tw, yt],
'progressive insurance': [yt, li, fb],
'quicken loans': [fb, tw, ig]
}