10 lines
217 B
Python
10 lines
217 B
Python
|
import logging
|
||
|
|
||
|
logging.basicConfig(level=logging.DEBUG)
|
||
|
|
||
|
from cache import get_cache
|
||
|
from receive import receive_links, receive_link_graph
|
||
|
|
||
|
cache = get_cache("./cache/")
|
||
|
receive_link_graph("Angela_Merkel", cache, 3)
|