(desc, file)
| 117 | for subUrl, text in reHREF.findall(html): |
| 118 | #print("Got suburl %s and text %s" % (subUrl, text)) |
| 119 | fullURL = urllib.parse.urljoin(urlString, subUrl) |
| 120 | links.append((text, fullURL)) |
| 121 | return links |
| 122 | |
| 123 | |
| 124 | def load(urlString): |
| 125 | try: |
| 126 | raw_request = urllib.request.Request(urlString) |
no outgoing calls
no test coverage detected
searching dependent graphs…