本文整理汇总了Python中mimetypes.MIMEType.from_string方法的典型用法代码示例。如果您正苦于以下问题:Python MIMEType.from_string方法的具体用法?Python MIMEType.from_string怎么用?Python MIMEType.from_string使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mimetypes.MIMEType
的用法示例。
在下文中一共展示了MIMEType.from_string方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_from_string_filter
# 需要导入模块: from mimetypes import MIMEType [as 别名]
# 或者: from mimetypes.MIMEType import from_string [as 别名]
def test_from_string_filter(self):
text = '''<MIME mime="text/plain" handler="SEND">
<FILTER value="gzip" />
<FILTER value="bzip2" />
</MIME>'''
mime = MIMEType.from_string(text)
right = MIMEType('text/plain', 'SEND', filters = ['gzip', 'bzip2'])
self.assertEqual(mime, right)
示例2: test_mime_type
# 需要导入模块: from mimetypes import MIMEType [as 别名]
# 或者: from mimetypes.MIMEType import from_string [as 别名]
def test_mime_type(self):
text = '''
<MIME mime="text/plain" custom="unknown">
<CUSTOM />
</MIME>'''
mime = MIMEType.from_string(text)
tree = mime.to_lxml_element()
self.assertEqual('unknown', tree.get('custom'))
custom = tree.findall('CUSTOM')
self.assertEqual(1, len(custom))
示例3: test_from_string_full
# 需要导入模块: from mimetypes import MIMEType [as 别名]
# 或者: from mimetypes.MIMEType import from_string [as 别名]
def test_from_string_full(self):
text = '''<MIME mime="text/plain" handler="SEND" self="YES" param="python">
<EXTENSION value="py" />
<FILTER value="gzip" />
<FILTER value="bzip2" />
<PATH regex="^/.*$" />
{0}
</MIME>'''.format('\n'.join(map(str, self.definitions)))
mime = MIMEType.from_string(text)
right = MIMEType('text/plain', 'SEND', 'python', ['py'], '^/.*$',
['gzip', 'bzip2'], 'YES', self.definitions)
self.assertEqual(mime, right)
示例4: test_to_string_full
# 需要导入模块: from mimetypes import MIMEType [as 别名]
# 或者: from mimetypes.MIMEType import from_string [as 别名]
def test_to_string_full(self):
mime = MIMEType('text/plain', 'SEND', 'python', ['py'], '^/.*$',
['gzip', 'bzip2'], 'YES', self.definitions)
copy = MIMEType.from_string(str(mime))
self.assertEqual(mime, copy)
示例5: test_to_string_definitions
# 需要导入模块: from mimetypes import MIMEType [as 别名]
# 或者: from mimetypes.MIMEType import from_string [as 别名]
def test_to_string_definitions(self):
mime = MIMEType('text/plain', 'SEND', definitions = self.definitions)
copy = MIMEType.from_string(str(mime))
self.assertEqual(mime, copy)
示例6: test_to_string_self_executed
# 需要导入模块: from mimetypes import MIMEType [as 别名]
# 或者: from mimetypes.MIMEType import from_string [as 别名]
def test_to_string_self_executed(self):
mime = MIMEType('text/plain', 'SEND', self_executed = 'YES')
copy = MIMEType.from_string(str(mime))
self.assertEqual(mime, copy)
示例7: test_to_string_filter
# 需要导入模块: from mimetypes import MIMEType [as 别名]
# 或者: from mimetypes.MIMEType import from_string [as 别名]
def test_to_string_filter(self):
mime = MIMEType('text/plain', 'SEND', filters = ['gzip', 'bzip2'])
copy = MIMEType.from_string(str(mime))
self.assertEqual(mime, copy)
示例8: test_to_string_path
# 需要导入模块: from mimetypes import MIMEType [as 别名]
# 或者: from mimetypes.MIMEType import from_string [as 别名]
def test_to_string_path(self):
mime = MIMEType('text/plain', 'SEND', path = '^/.*$')
copy = MIMEType.from_string(str(mime))
self.assertEqual(mime, copy)
示例9: test_to_string_extension
# 需要导入模块: from mimetypes import MIMEType [as 别名]
# 或者: from mimetypes.MIMEType import from_string [as 别名]
def test_to_string_extension(self):
mime = MIMEType('text/plain', 'SEND', extensions = ['py'])
copy = MIMEType.from_string(str(mime))
self.assertEqual(mime, copy)
示例10: test_to_string_param
# 需要导入模块: from mimetypes import MIMEType [as 别名]
# 或者: from mimetypes.MIMEType import from_string [as 别名]
def test_to_string_param(self):
mime = MIMEType('text/plain', 'SEND', '/usr/bin/python')
copy = MIMEType.from_string(str(mime))
self.assertEqual(mime, copy)
示例11: test_from_string_definitions
# 需要导入模块: from mimetypes import MIMEType [as 别名]
# 或者: from mimetypes.MIMEType import from_string [as 别名]
def test_from_string_definitions(self):
text = '<MIME mime="text/plain" handler="SEND">{0}</MIME>'.format(
'\n'.join(map(str, self.definitions)))
mime = MIMEType.from_string(text)
right = MIMEType('text/plain', 'SEND', definitions = self.definitions)
self.assertEqual(mime, right)
示例12: test_from_string_self_executed
# 需要导入模块: from mimetypes import MIMEType [as 别名]
# 或者: from mimetypes.MIMEType import from_string [as 别名]
def test_from_string_self_executed(self):
text = '<MIME mime="text/plain" handler="SEND" self="YES" />'
mime = MIMEType.from_string(text)
right = MIMEType('text/plain', 'SEND', self_executed = 'YES')
self.assertEqual(mime, right)
示例13: test_from_string_path
# 需要导入模块: from mimetypes import MIMEType [as 别名]
# 或者: from mimetypes.MIMEType import from_string [as 别名]
def test_from_string_path(self):
text = '<MIME mime="text/plain" handler="SEND"><PATH regex="^/.*$" /></MIME>'
mime = MIMEType.from_string(text)
right = MIMEType('text/plain', 'SEND', path = '^/.*$')
self.assertEqual(mime, right)
示例14: test_from_string_extension
# 需要导入模块: from mimetypes import MIMEType [as 别名]
# 或者: from mimetypes.MIMEType import from_string [as 别名]
def test_from_string_extension(self):
text = '<MIME mime="text/plain" handler="SEND"><EXTENSION value="py" /></MIME>'
mime = MIMEType.from_string(text)
right = MIMEType('text/plain', 'SEND', extensions = ['py'])
self.assertEqual(mime, right)
示例15: test_from_string_param
# 需要导入模块: from mimetypes import MIMEType [as 别名]
# 或者: from mimetypes.MIMEType import from_string [as 别名]
def test_from_string_param(self):
text = '<MIME mime="text/plain" handler="SEND" param="/usr/bin/python" />'
mime = MIMEType.from_string(text)
right = MIMEType('text/plain', 'SEND', '/usr/bin/python')
self.assertEqual(mime, right)