पर मौजूद हैं मैं s3boto बैकएंड साथ Django भंडार का उपयोग कर रहा पर Boto, सेट content_type का उपयोग करना। इस समस्या के अनुसार, http://code.larlet.fr/django-storages/issue/5/s3botostorage-set-content-type-header-acl-fixed-use-http-and-disable-query-auth-by मेरे पास फाइलों का एक समूह है (उनमें से सभी) जिनमें सामग्री प्रकार 'एप्लिकेशन/ऑक्टेट-स्ट्रीम' है। यह देखते हुए कि मेरे पास <class 'boto.s3.key.Key'>
का उदाहरण है, मैं content_type कैसे सेट कर सकता हूं?फ़ाइलें जो पहले से ही S3
In [29]: a.file.file.key.content_type
Out[29]: 'application/octet-stream'
In [30]: mimetypes.guess_type(a.file.file.key.name)[0]
Out[30]: 'image/jpeg'
In [31]: type(a.file.file.key)
Out[31]: <class 'boto.s3.key.Key'>