In Python, are there any modules for extracting plain urls from a string like Perl's URI::Find does?
Thanks.
|
|
Here is a regex which can help you find the urls in text. There is no famous package in python which does uri::find in plain text. The sphinx documentation project however, includes a builder called If you simply care about http and https, the answer is here. |
|||
|
|