url_regex:用于在Python中匹配URL的正则表达式 源码
url_regex 用于在Python中匹配URL的正则表达式。 这个项目的灵感来自 ,我想要类似于Python的东西,所以就在这里。 要求 Python 3.6或更高版本 安装 点安装url_regex 例子 import url_regex findlinks = url_regex . UrlRegex ( "Hi guys, check out my SoundCloud :fire:: https://soundcloud.com/invalidLink420" ) findlinks . detect # True findlinks . links # [<Url full=https://soundcloud.com/invalidLink420 domain=soundcloud.com protocol=https://]
用户评论