如何检查URL是Python中的网页链接还是文件链接

如何检查URL是Python中的网页链接还是文件链接,第1张

如何检查URL是Python中的网页链接还是文件链接
import urllibimport mimetypesdef guess_type_of(link, strict=True):    link_type, _ = mimetypes.guess_type(link)    if link_type is None and strict:        u = urllib.urlopen(link)        link_type = u.headers.gettype() # or using: u.info().gettype()    return link_type

演示

links = ['http://stackoverflow.com/q/21515098/538284', # It's a html page         'http://upload.wikimedia.org/wikipedia/meta/6/6d/Wikipedia_wordmark_1x.png', # It's a png file         'http://commons.wikimedia.org/wiki/File:Typing_example.ogv', # It's a html page         'http://upload.wikimedia.org/wikipedia/commons/e/e6/Typing_example.ogv'   # It's an ogv file]for link in links:    print(guess_type_of(link))

输出

text/htmlimage/x-pngtext/htmlapplication/ogg


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5661988.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存