(text)
| 201 | # |
| 202 | # remove entire URL |
| 203 | def remove_URL(text): |
| 204 | url = re.compile(r'https?://\S+|www\.\S+') |
| 205 | return url.sub(r'', text) |
| 206 | |
| 207 | |
| 208 | # Remove just HTML markup language |
nothing calls this directly
no outgoing calls
no test coverage detected