-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
42 lines (17 loc) · 808 Bytes
/
Copy pathmain.py
File metadata and controls
42 lines (17 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
##################### Discription ###############################
# Sponsoring Companies can pass a long time searching for main informations about
# a youtuber like (First and Last name, Main Topics, Email adresss, ...).
# Also they spend a lot of time comparing youtubers we can Automate all these process
# The Goals :
#------------ Featch The main informations about a Youtuber (First name, Email adrees, Instagram...)
#------------ Help Sponsores comparing youtubers.
from Functions import Visualize
from Tools import clear_database
from Graph import Graph
#Visualize(Graph)
#clear_database()
def main(Youtube_handle):
for event in Graph.stream({"Youtube_Handle":Youtube_handle,"Response":"None","counter":1}):
for value in event.values():
pass
#main()