scientific-programming-exer.../exam/ex01/main.py

10 lines
217 B
Python
Raw Normal View History

2019-02-02 10:18:57 +00:00
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)