()
| 12 | |
| 13 | @lru_cache() |
| 14 | def create_crawler(): |
| 15 | crawler = WebCrawler(verbose=True) |
| 16 | crawler.warmup() |
| 17 | return crawler |
| 18 | |
| 19 | def print_result(result): |
| 20 | # Print each key in one line and just the first 10 characters of each one's value and three dots |
no test coverage detected
searching dependent graphs…