python3.5 django 文档相关动作错误及解决办法

来源:互联网 发布:气象数据同化PDF 编辑:程序博客网 时间:2024/05/16 18:54
1、动作:StringIO
参考:http://stackoverflow.com/questions/11914472/stringio-in-python3
try:    from StringIO import StringIOexcept ImportError:    from io import StringIO
/2、动作:import docx
错误:No module named 'exceptions'
参考:http://stackoverflow.com/questions/22765313/when-import-docx-in-python3-3-i-have-error-importerror-no-module-named-excepti
-from exceptions import PendingDeprecationWarning
+# Handle PendingDeprecationWarning causing an ImportError if using Python 3+try:+    from exceptions import PendingDeprecationWarning+except ImportError:+    pass+
0 0