aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore4
-rw-r--r--mastodon/Mastodon.py13
-rw-r--r--setup.py3
3 files changed, 18 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index e146528..66273be 100644
--- a/.gitignore
+++ b/.gitignore
@@ -91,4 +91,6 @@ ENV/
91# Secret files (for credentials used in testing) 91# Secret files (for credentials used in testing)
92*.secret 92*.secret
93pytooter_clientcred.txt 93pytooter_clientcred.txt
94pytooter_usercred.txt \ No newline at end of file 94pytooter_usercred.txtPipfile
95Pipfile.lock
96Pipfile
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py
index e6d8268..a2035c9 100644
--- a/mastodon/Mastodon.py
+++ b/mastodon/Mastodon.py
@@ -31,6 +31,11 @@ try:
31except ImportError: 31except ImportError:
32 from urlparse import urlparse 32 from urlparse import urlparse
33 33
34try:
35 import magic
36except ImportError:
37 magic = None
38
34### 39###
35# Version check functions, including decorator and parser 40# Version check functions, including decorator and parser
36### 41###
@@ -2529,3 +2534,11 @@ class MastodonRatelimitError(MastodonError):
2529class MastodonMalformedEventError(MastodonError): 2534class MastodonMalformedEventError(MastodonError):
2530 """Raised when the server-sent event stream is malformed""" 2535 """Raised when the server-sent event stream is malformed"""
2531 pass 2536 pass
2537
2538def guess_type(media_file):
2539 mime_type = None
2540 if magic:
2541 mime_type = magic.from_file(media_file, mime=True)
2542 else:
2543 mime_type = mimetypes.guess_type(media_file)[0]
2544 return mime_type
diff --git a/setup.py b/setup.py
index e49c26c..009063d 100644
--- a/setup.py
+++ b/setup.py
@@ -13,7 +13,8 @@ setup(name='Mastodon.py',
13 'requests', 13 'requests',
14 'python-dateutil', 14 'python-dateutil',
15 'six', 15 'six',
16 'pytz', 16 'pytz',
17 'python-magic',
17 'decorator>=4.0.0', 18 'decorator>=4.0.0',
18 'http_ece>=1.0.5', 19 'http_ece>=1.0.5',
19 'cryptography>=1.6.0' 20 'cryptography>=1.6.0'
Powered by cgit v1.2.3 (git 2.41.0)