xmlファイルのmimetypeを判別したいのですが、最初の引数としていくつかのインスタンスについてエラーが発生します。私はPythonを初めて使用します。助けてください。以下は私が使用しているコードとそれがスローするエラーです。
from mimetypes import MimeTypes
import urllib
FILENAME = 'Upload.xml'
url = urllib.pathname2url(FILENAME)
type = MimeTypes.guess_type(url)
print type
**ERROR :** Traceback (most recent call last):
File "/home/navi/Desktop/quicksort.py", line 20, in <module>
type = MimeTypes.guess_type(url)
TypeError: unbound method guess_type() must be called with MimeTypes instance as first argument (got str instance instead)