有没有人知道读取docx文件的python库?
我有一个word文档,我试图从中读取数据。
答案 0 :(得分:1)
快速search of PyPI打开了docx包。
答案 1 :(得分:0)
python-docx既可以读也可以写。
doc = docx.Document('myfile.docx')
allText = []
for docpara in doc.paragraphs:
allText.append(docpara.text)
现在所有段落都在列表allText。
感谢"如何使用Python自动化无聊的东西"由Al Sweigart为指针。
答案 2 :(得分:0)
if ( $cart_item['data']->get_width() > $width_threshold && !in_array( $cart_item['data']->get_shipping_class_id(), $exclClasses)) {
$apply_fee = true;
}
并且不要忘记使用(pip install python-docx)
安装 python-docx