[Python] 이미지 파일의 MIME TYPE 알아내는 방법
티스토리 같은 경우 이미지를 첨부하면 아래와 같이 확장자명이 생략이 됩니다.
<img src="https://t1.daumcdn.net/cfile/tistory/C81EA46998F0401423" style="cursor: pointer;max-width:100%;height:auto" width="820"/>
그래서 일단 해당 url 의 이미지를 로컬에 저장한 다음에 아래의 소스코드로 알아내면 됩니다.
import magic
mime_type = magic.from_file(filename, mime=True)
print('mime_type : ' + mime_type)
사전에 pip install python-magic 명령으로 해당 라이브러리를 먼저 설치하면 됩니다.
반응형
'Python' 카테고리의 다른 글
[Python] requests.get 한글깨짐 (0) | 2019.08.19 |
---|---|
[CentOS] Python PIP 설치 (0) | 2019.08.19 |
[CentOS] 7.x Apache + Python 연동 방법 (0) | 2018.12.21 |
[Python] sitemap.xml 생성 방법 (0) | 2018.12.20 |
[Python] XML Create and Write (0) | 2018.12.18 |