()
| 73 | |
| 74 | |
| 75 | def main(): |
| 76 | ssl._create_default_https_context = ssl._create_unverified_context |
| 77 | start_crawl('http://sports.sohu.com/nba_a.shtml', |
| 78 | r'<a[^>]+test=a\s[^>]*href=["\'](.*?)["\']', |
| 79 | max_depth=2) |
| 80 | |
| 81 | |
| 82 | if __name__ == '__main__': |
no test coverage detected