如何解决python中使用flask时遇到的markupsafe
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何解决python中使用flask时遇到的markupsafe相关的知识,希望对你有一定的参考价值。
参考技术A 于是尝试在该目录下新建一个_compat.py文件,将以下内容复制到该文件中:# -*- coding: utf-8 -*-
"""
markupsafe._compat
~~~~~~~~~~~~~~~~~~
Compatibility module for different Python versions.
:copyright: (c) 2013 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""
import sys
PY2 = sys.version_info[0] == 2
if not PY2:
text_type = str
string_types = (str,)
unichr = chr
int_types = (int,)
iteritems = lambda x: iter(x.items())
else:
text_type = unicode
string_types = (str, unicode)
unichr = unichr
int_types = (int, long)
iteritems = lambda x: x.iteritems()
以上是关于如何解决python中使用flask时遇到的markupsafe的主要内容,如果未能解决你的问题,请参考以下文章
我在使用 Python 为 Flask 设置计费周期时遇到问题
如何使用“插入选择暂停”插入并在 Python Flask 中使用可迭代
尝试在 Apache2 上使用 WSGI 部署 Flask 时如何解决导入错误