Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 2 KB

mime-type.md

File metadata and controls

38 lines (26 loc) · 2 KB

MIME Type

Python

雖然 Python 內建 mimetypes,但它只是根據副檔名判斷,建議用 python-magic 套件,從檔頭判斷 (背後用 libmagic)。

>>> import magic
>>> magic.from_file('index.html', mime=True)
'text/html'

參考資料:

參考資料 {: #reference }

手冊: