gpt4 book ai didi

Python:如何获取 URL 的内容类型?

转载 作者:太空狗 更新时间:2023-10-29 18:15:03 26 4
gpt4 key购买 nike

我需要获取互联网(内联网)资源的内容类型,而不是本地文件。如何从 URL 后面的资源获取 MIME 类型:

我试过这个:

res = urllib.urlopen("http://www.iana.org/assignments/language-subtag-registry")
http_message = res.info()
message = http_message.getplist()

我得到:['charset=UTF-8']

我怎样才能得到 Content-Type,可以使用 urllib 来完成,如果不能,还有其他方法吗?

最佳答案

对此的 Python3 解决方案:

import urllib.request
with urllib.request.urlopen('http://www.google.com') as response:
info = response.info()
print(info.get_content_type()) # -> text/html
print(info.get_content_maintype()) # -> text
print(info.get_content_subtype()) # -> html

关于Python:如何获取 URL 的内容类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12474406/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com