嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
python-docx-0.8.10.tar.gz
其实pip list python-docx 安装不成功,安装一般就报错,主要原因是从官网的下载不稳定,而且慢,经常会断,只能先下下来,然后放到cmd所在的文件夹或者指定路径,pip list python-docx-0.8.10.tar.gz,很快就好了!
.
├── python-docx-0.8.10
│ ├── HISTORY.rst
│ ├── LICENSE
│ ├── MANIFEST.in
│ ├── PKG-INFO
│ ├── README.rst
│ ├── docs
│ │ ├── Makefile
│ │ ├── Session.vim
│ │ ├── _static
│ │ │ └── img
│ │ │ ├── example-docx-01.png
│ │ │ ├── hdrftr-01.png
│ │ │ └── hdrftr-02.png
│ │ ├── _templates
│ │ │ └── sidebarlinks.html
│ │ ├── _themes
│ │ │ └── armstrong
│ │ │ ├── LICENSE
│ │ │ ├── layout.html
│ │ │ ├── rtd-themes.conf
│ │ │ ├── static
│ │ │ │ └── rtd.css_t
│ │ │ ├── theme.conf
│ │ │ └── theme.conf.orig
│ │ ├── api
│ │ │ ├── dml.rst
│ │ │ ├── document.rst
│ │ │ ├── enum
│ │ │ │ ├── MsoColorType.rst
│ │ │ │ ├── MsoThemeColorIndex.rst
│ │ │ │ ├── WdAlignParagraph.rst
│ │ │ │ ├── WdBuiltinStyle.rst
│ │ │ │ ├── WdCellVerticalAlignment.rst
│ │ │ │ ├── WdColorIndex.rst
│ │ │ │ ├── WdLineSpacing.rst
│ │ │ │ ├── WdOrientation.rst
│ │ │ │ ├── WdRowAlignment.rst
│ │ │ │ ├── WdRowHeightRule.rst
│ │ │ │ ├── WdSectionStart.rst
│ │ │ │ ├── WdStyleType.rst
│ │ │ │ ├── WdTabAlignment.rst
│ │ │ │ ├── WdTabLeader.rst
│ │ │ │ ├── WdTableDirection.rst
│ │ │ │ ├── WdUnderline.rst
│ │ │ │ └── index.rst
│ │ │ ├── section.rst
│ │ │ ├── settings.rst
│ │ │ ├── shape.rst
│ │ │ ├── shared.rst
│ │ │ ├── style.rst
│ │ │ ├── table.rst
│ │ │ └── text.rst
│ │ ├── conf.py
│ │ ├── dev
│ │ │ └── analysis
│ │ │ ├── features
│ │ │ │ ├── coreprops.rst
│ │ │ │ ├── header.rst
│ │ │ │ ├── numbering.rst
│ │ │ │ ├── sections.rst
│ │ │ │ ├── settings.rst
│ │ │ │ ├── shapes
│ │ │ │ │ ├── index.rst
│ │ │ │ │ ├── picture.rst
│ │ │ │ │ ├── shapes-inline-size.rst
│ │ │ │ │ └── shapes-inline.rst
│ │ │ │ ├── styles
│ │ │ │ │ ├── character-style.rst
│ │ │ │ │ ├── index.rst
│ │ │ │ │ ├── latent-styles.rst
│ │ │ │ │ ├── paragraph-style.rst
│ │ │ │ │ ├── style.rst
│ │ │ │ │ └── styles.rst
│ │ │ │ ├── table
│ │ │ │ │ ├── cell-merge.rst
│ │ │ │ │ ├── index.rst
│ │ │ │ │ ├── table-cell.rst
│ │ │ │ │ ├── table-props.rst
│ │ │ │ │ └── table-row.rst
│ │ │ │ └── text
│ │ │ │ ├── breaks.rst
│ │ │ │ ├── font-color.rst
│ │ │ │ ├── font-highlight-color.rst
│ │ │ │ ├── font.rst
│ │ │ │ ├── index.rst
│ │ │ │ ├── paragraph-format.rst
│ │ │ │ ├── run-content.rst
│ │ │ │ ├── tab-stops.rst
│ │ │ │ └── underline.rst
│ │ │ ├── index.rst
│ │ │ └── schema
│ │ │ ├── ct_body.rst
│ │ │ ├── ct_document.rst
│ │ │ └── ct_p.rst
│ │ ├── index.rst
│ │ └── user
│ │ ├── api-concepts.rst
│ │ ├── documents.rst
│ │ ├── hdrftr.rst
│ │ ├── install.rst
│ │ ├── quickstart.rst
│ │ ├── sections.rst
│ │ ├── shapes.rst
│ │ ├── styles-understanding.rst
│ │ ├── styles-using.rst
│ │ └── text.rst
│ ├── docx
│ │ ├── __init__.py
│ │ ├── api.py
│ │ ├── blkcntnr.py
│ │ ├── compat.py
│ │ ├── dml
│ │ │ ├── __init__.py
│ │ │ └── color.py
│ │ ├── document.py
│ │ ├── enum
│ │ │ ├── __init__.py
│ │ │ ├── base.py
│ │ │ ├── dml.py
│ │ │ ├── section.py
│ │ │ ├── shape.py
│ │ │ ├── style.py
│ │ │ ├── table.py
│ │ │ └── text.py
│ │ ├── exceptions.py
│ │ ├── image
│ │ │ ├── __init__.py
│ │ │ ├── bmp.py
│ │ │ ├── constants.py
│ │ │ ├── exceptions.py
│ │ │ ├── gif.py
│ │ │ ├── helpers.py
│ │ │ ├── image.py
│ │ │ ├── jpeg.py
│ │ │ ├── png.py
│ │ │ └── tiff.py
│ │ ├── opc
│ │ │ ├── __init__.py
│ │ │ ├── compat.py
│ │ │ ├── constants.py
│ │ │ ├── coreprops.py
│ │ │ ├── exceptions.py
│ │ │ ├── oxml.py
│ │ │ ├── package.py
│ │ │ ├── packuri.py
│ │ │ ├── part.py
│ │ │ ├── parts
│ │ │ │ ├── __init__.py
│ │ │ │ └── coreprops.py
│ │ │ ├── phys_pkg.py
│ │ │ ├── pkgreader.py
│ │ │ ├── pkgwriter.py
│ │ │ ├── rel.py
│ │ │ ├── shared.py
│ │ │ └── spec.py
│ │ ├── oxml
│ │ │ ├── __init__.py
│ │ │ ├── coreprops.py
│ │ │ ├── document.py
│ │ │ ├── exceptions.py
│ │ │ ├── ns.py
│ │ │ ├── numbering.py
│ │ │ ├── section.py
│ │ │ ├── settings.py
│ │ │ ├── shape.py
│ │ │ ├── shared.py
│ │ │ ├── simpletypes.py
│ │ │ ├── styles.py
│ │ │ ├── table.py
│ │ │ ├── text
│ │ │ │ ├── __init__.py
│ │ │ │ ├── font.py
│ │ │ │ ├── paragraph.py
│ │ │ │ ├── parfmt.py
│ │ │ │ └── run.py
│ │ │ └── xmlchemy.py
│ │ ├── package.py
│ │ ├── parts
│ │ │ ├── __init__.py
│ │ │ ├── document.py
│ │ │ ├── hdrftr.py
│ │ │ ├── image.py
│ │ │ ├── numbering.py
│ │ │ ├── settings.py
│ │ │ ├── story.py
│ │ │ └── styles.py
│ │ ├── section.py
│ │ ├── settings.py
│ │ ├── shape.py
│ │ ├── shared.py
│ │ ├── styles
│ │ │ ├── __init__.py
│ │ │ ├── latent.py
│ │ │ ├── style.py
│ │ │ └── styles.py
│ │ ├── table.py
│ │ ├── templates
│ │ │ ├── default-docx-template
│ │ │ │ ├── [Content_Types].xml
│ │ │ │ ├── _rels
│ │ │ │ ├── customXml
│ │ │ │ │ ├── _rels
│ │ │ │ │ │ └── item1.xml.rels
│ │ │ │ │ ├── item1.xml
│ │ │ │ │ └── itemProps1.xml
│ │ │ │ ├── docProps
│ │ │ │ │ ├── app.xml
│ │ │ │ │ ├── core.xml
│ │ │ │ │ └── thumbnail.jpeg
│ │ │ │ └── word
│ │ │ │ ├── _rels
│ │ │ │ │ └── document.xml.rels
│ │ │ │ ├── document.xml
│ │ │ │ ├── fontTable.xml
│ │ │ │ ├── numbering.xml
│ │ │ │ ├── settings.xml
│ │ │ │ ├── styles.xml
│ │ │ │ ├── stylesWithEffects.xml
│ │ │ │ ├── theme
│ │ │ │ │ └── theme1.xml
│ │ │ │ └── webSettings.xml
│ │ │ ├── default-footer.xml
│ │ │ ├── default-header.xml
│ │ │ ├── default-settings.xml
│ │ │ ├── default-styles.xml
│ │ │ └── default.docx
│ │ └── text
│ │ ├── __init__.py
│ │ ├── font.py
│ │ ├── paragraph.py
│ │ ├── parfmt.py
│ │ ├── run.py
│ │ └── tabstops.py
│ ├── features
│ │ ├── _scratch
│ │ │ ├── test_out
│ │ │ │ ├── [Content_Types].xml
│ │ │ │ ├── _rels
│ │ │ │ ├── customXml
│ │ │ │ │ ├── _rels
│ │ │ │ │ │ └── item1.xml.rels
│ │ │ │ │ ├── item1.xml
│ │ │ │ │ └── itemProps1.xml
│ │ │ │ ├── docProps
│ │ │ │ │ ├── app.xml
│ │ │ │ │ ├── core.xml
│ │ │ │ │ └── thumbnail.jpeg
│ │ │ │ └── word
│ │ │ │ ├── _rels
│ │ │ │ │ └── document.xml.rels
│ │ │ │ ├── document.xml
│ │ │ │ ├── fontTable.xml
│ │ │ │ ├── numbering.xml
│ │ │ │ ├── settings.xml
│ │ │ │ ├── styles.xml
│ │ │ │ ├── stylesWithEffects.xml
│ │ │ │ ├── theme
│ │ │ │ │ └── theme1.xml
│ │ │ │ └── webSettings.xml
│ │ │ └── test_out.docx
│ │ ├── api-open-document.feature
│ │ ├── blk-add-paragraph.feature
│ │ ├── blk-add-table.feature
│ │ ├── cel-add-table.feature
│ │ ├── cel-text.feature
│ │ ├── doc-access-collections.feature
│ │ ├── doc-access-sections.feature
│ │ ├── doc-add-heading.feature
│ │ ├── doc-add-page-break.feature
│ │ ├── doc-add-paragraph.feature
│ │ ├── doc-add-picture.feature
│ │ ├── doc-add-section.feature
│ │ ├── doc-add-table.feature
│ │ ├── doc-coreprops.feature
│ │ ├── doc-settings.feature
│ │ ├── doc-styles.feature
│ │ ├── environment.py
│ │ ├── hdr-header-footer.feature
│ │ ├── img-characterize-image.feature
│ │ ├── num-access-numbering-part.feature
│ │ ├── par-access-parfmt.feature
│ │ ├── par-add-run.feature
│ │ ├── par-alignment-prop.feature
│ │ ├── par-clear-paragraph.feature
│ │ ├── par-insert-paragraph.feature
│ │ ├── par-set-text.feature
│ │ ├── par-style-prop.feature
│ │ ├── run-access-content.feature
│ │ ├── run-access-font.feature
│ │ ├── run-add-content.feature
│ │ ├── run-add-picture.feature
│ │ ├── run-char-style.feature
│ │ ├── run-clear-run.feature
│ │ ├── run-enum-props.feature
│ │ ├── sct-section.feature
│ │ ├── shp-inline-shape-access.feature
│ │ ├── shp-inline-shape-size.feature
│ │ ├── steps
│ │ │ ├── api.py
│ │ │ ├── block.py
│ │ │ ├── cell.py
│ │ │ ├── coreprops.py
│ │ │ ├── document.py
│ │ │ ├── font.py
│ │ │ ├── hdrftr.py
│ │ │ ├── helpers.py
│ │ │ ├── image.py
│ │ │ ├── numbering.py
│ │ │ ├── paragraph.py
│ │ │ ├── parfmt.py
│ │ │ ├── section.py
│ │ │ ├── settings.py
│ │ │ ├── shape.py
│ │ │ ├── shared.py
│ │ │ ├── styles.py
│ │ │ ├── table.py
│ │ │ ├── tabstops.py
│ │ │ ├── test_files
│ │ │ │ ├── blk-containing-table.docx
│ │ │ │ ├── court-exif.jpg
│ │ │ │ ├── doc-access-sections.docx
│ │ │ │ ├── doc-add-section.docx
│ │ │ │ ├── doc-coreprops.docx
│ │ │ │ ├── doc-default.docx
│ │ │ │ ├── doc-no-coreprops.docx
│ │ │ │ ├── doc-odd-even-hdrs.docx
│ │ │ │ ├── doc-word-default-blank.docx
│ │ │ │ ├── fnt-color.docx
│ │ │ │ ├── hdr-header-footer.docx
│ │ │ │ ├── jfif-300-dpi.jpg
│ │ │ │ ├── jpeg420exif.jpg
│ │ │ │ ├── lena.bmp
│ │ │ │ ├── lena.gif
│ │ │ │ ├── lena.tif
│ │ │ │ ├── lena_std.jpg
│ │ │ │ ├── monty-truth.png
│ │ │ │ ├── mountain.bmp
│ │ │ │ ├── num-having-numbering-part.docx
│ │ │ │ ├── par-alignment.docx
│ │ │ │ ├── par-known-paragraphs.docx
│ │ │ │ ├── par-known-styles.docx
│ │ │ │ ├── python-icon.jpeg
│ │ │ │ ├── run-char-style.docx
│ │ │ │ ├── run-enumerated-props.docx
│ │ │ │ ├── sample.tif
│ │ │ │ ├── sct-first-page-hdrftr.docx
│ │ │ │ ├── sct-section-props.docx
│ │ │ │ ├── set-no-settings-part.docx
│ │ │ │ ├── shp-inline-shape-access.docx
│ │ │ │ ├── sty-behav-props.docx
│ │ │ │ ├── sty-having-no-styles-part.docx
│ │ │ │ ├── sty-having-styles-part.docx
│ │ │ │ ├── sty-known-styles.docx
│ │ │ │ ├── tab-stops.docx
│ │ │ │ ├── tbl-2x2-table.docx
│ │ │ │ ├── tbl-cell-access.docx
│ │ │ │ ├── tbl-col-props.docx
│ │ │ │ ├── tbl-having-applied-style.docx
│ │ │ │ ├── tbl-having-tables.docx
│ │ │ │ ├── tbl-on-off-props.docx
│ │ │ │ ├── tbl-props.docx
│ │ │ │ ├── test.png
│ │ │ │ ├── txt-font-highlight-color.docx
│ │ │ │ └── txt-font-props.docx
│ │ │ └── text.py
│ │ ├── sty-access-font.feature
│ │ ├── sty-access-latent-styles.feature
│ │ ├── sty-access-parfmt.feature
│ │ ├── sty-add-style.feature
│ │ ├── sty-delete-style.feature
│ │ ├── sty-latent-add-del.feature
│ │ ├── sty-latent-props.feature
│ │ ├── sty-style-props.feature
│ │ ├── tab-access-tabs.feature
│ │ ├── tab-tabstop-props.feature
│ │ ├── tbl-add-row-or-col.feature
│ │ ├── tbl-cell-access.feature
│ │ ├── tbl-cell-props.feature
│ │ ├── tbl-col-props.feature
│ │ ├── tbl-item-access.feature
│ │ ├── tbl-merge-cells.feature
│ │ ├── tbl-props.feature
│ │ ├── tbl-row-props.feature
│ │ ├── tbl-style.feature
│ │ ├── txt-add-break.feature
│ │ ├── txt-font-color.feature
│ │ ├── txt-font-props.feature
│ │ └── txt-parfmt-props.feature
│ ├── python_docx.egg-info
│ │ ├── PKG-INFO
│ │ ├── SOURCES.txt
│ │ ├── dependency_links.txt
│ │ ├── requires.txt
│ │ └── top_level.txt
│ ├── setup.cfg
│ ├── setup.py
│ ├── tests
│ │ ├── __init__.py
│ │ ├── dml
│ │ │ ├── __init__.py
│ │ │ └── test_color.py
│ │ ├── image
│ │ │ ├── __init__.py
│ │ │ ├── test_bmp.py
│ │ │ ├── test_gif.py
│ │ │ ├── test_helpers.py
│ │ │ ├── test_image.py
│ │ │ ├── test_jpeg.py
│ │ │ ├── test_png.py
│ │ │ └── test_tiff.py
│ │ ├── opc
│ │ │ ├── __init__.py
│ │ │ ├── parts
│ │ │ │ ├── __init__.py
│ │ │ │ └── test_coreprops.py
│ │ │ ├── test_coreprops.py
│ │ │ ├── test_oxml.py
│ │ │ ├── test_package.py
│ │ │ ├── test_packuri.py
│ │ │ ├── test_part.py
│ │ │ ├── test_phys_pkg.py
│ │ │ ├── test_pkgreader.py
│ │ │ ├── test_pkgwriter.py
│ │ │ ├── test_rel.py
│ │ │ └── unitdata
│ │ │ ├── __init__.py
│ │ │ ├── rels.py
│ │ │ └── types.py
│ │ ├── oxml
│ │ │ ├── __init__.py
│ │ │ ├── parts
│ │ │ │ ├── __init__.py
│ │ │ │ ├── test_document.py
│ │ │ │ └── unitdata
│ │ │ │ ├── __init__.py
│ │ │ │ └── document.py
│ │ │ ├── test__init__.py
│ │ │ ├── test_ns.py
│ │ │ ├── test_styles.py
│ │ │ ├── test_table.py
│ │ │ ├── test_xmlchemy.py
│ │ │ ├── text
│ │ │ │ ├── __init__.py
│ │ │ │ └── test_run.py
│ │ │ └── unitdata
│ │ │ ├── __init__.py
│ │ │ ├── dml.py
│ │ │ ├── numbering.py
│ │ │ ├── section.py
│ │ │ ├── shared.py
│ │ │ ├── styles.py
│ │ │ ├── table.py
│ │ │ └── text.py
│ │ ├── parts
│ │ │ ├── __init__.py
│ │ │ ├── test_document.py
│ │ │ ├── test_hdrftr.py
│ │ │ ├── test_image.py
│ │ │ ├── test_numbering.py
│ │ │ ├── test_settings.py
│ │ │ ├── test_story.py
│ │ │ └── test_styles.py
│ │ ├── styles
│ │ │ ├── __init__.py
│ │ │ ├── test_latent.py
│ │ │ ├── test_style.py
│ │ │ └── test_styles.py
│ │ ├── test_api.py
│ │ ├── test_blkcntnr.py
│ │ ├── test_document.py
│ │ ├── test_enum.py
│ │ ├── test_files
│ │ │ ├── 150-dpi.png
│ │ │ ├── 300-dpi.TIF
│ │ │ ├── 300-dpi.jpg
│ │ │ ├── 300-dpi.png
│ │ │ ├── 72-dpi.tiff
│ │ │ ├── CVS_LOGO.WMF
│ │ │ ├── exif-420-dpi.jpg
│ │ │ ├── expanded_docx
│ │ │ │ ├── [Content_Types].xml
│ │ │ │ ├── _rels
│ │ │ │ ├── customXml
│ │ │ │ │ ├── _rels
│ │ │ │ │ │ └── item1.xml.rels
│ │ │ │ │ ├── item1.xml
│ │ │ │ │ └── itemProps1.xml
│ │ │ │ ├── docProps
│ │ │ │ │ ├── app.xml
│ │ │ │ │ ├── core.xml
│ │ │ │ │ └── thumbnail.jpeg
│ │ │ │ └── word
│ │ │ │ ├── _rels
│ │ │ │ │ └── document.xml.rels
│ │ │ │ ├── document.xml
│ │ │ │ ├── fontTable.xml
│ │ │ │ ├── numbering.xml
│ │ │ │ ├── settings.xml
│ │ │ │ ├── styles.xml
│ │ │ │ ├── stylesWithEffects.xml
│ │ │ │ ├── theme
│ │ │ │ │ └── theme1.xml
│ │ │ │ └── webSettings.xml
│ │ │ ├── having-images.docx
│ │ │ ├── jfif-iguana.jpg
│ │ │ ├── little-endian.tif
│ │ │ ├── monty-truth.png
│ │ │ ├── python-icon.jpeg
│ │ │ ├── python-icon.png
│ │ │ ├── python-powered.png
│ │ │ ├── python.bmp
│ │ │ ├── snippets
│ │ │ │ ├── add-row-col.txt
│ │ │ │ ├── inline.txt
│ │ │ │ ├── new-tbl.txt
│ │ │ │ └── tbl-cells.txt
│ │ │ ├── sonic.gif
│ │ │ └── test.docx
│ │ ├── test_package.py
│ │ ├── test_section.py
│ │ ├── test_settings.py
│ │ ├── test_shape.py
│ │ ├── test_shared.py
│ │ ├── test_table.py
│ │ ├── text
│ │ │ ├── __init__.py
│ │ │ ├── test_font.py
│ │ │ ├── test_paragraph.py
│ │ │ ├── test_parfmt.py
│ │ │ ├── test_run.py
│ │ │ └── test_tabstops.py
│ │ ├── unitdata.py
│ │ └── unitutil
│ │ ├── __init__.py
│ │ ├── cxml.py
│ │ ├── file.py
│ │ └── mock.py
│ └── tox.ini
└── 好例子网_python-docx-0.8.10.tar.gz
77 directories, 463 files