在好例子网,分享、交流、成长!
您当前所在位置:首页Python 开发实例Python语言基础 → python-docx-0.8.10.tar.gz

python-docx-0.8.10.tar.gz

Python语言基础

下载此实例
  • 开发语言:Python
  • 实例大小:5.28M
  • 下载次数:2
  • 浏览次数:10
  • 发布时间:2023-11-09
  • 实例类别:Python语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.gz
  • 所需积分:2
 相关标签: python docx doc ocx 10

实例介绍

【实例简介】python-docx-0.8.10.tar.gz
其实pip list python-docx 安装不成功,安装一般就报错,主要原因是从官网的下载不稳定,而且慢,经常会断,只能先下下来,然后放到cmd所在的文件夹或者指定路径,pip list python-docx-0.8.10.tar.gz,很快就好了!

【实例截图】

from clipboard

【核心代码】

.
├── 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


标签: python docx doc ocx 10

实例下载地址

python-docx-0.8.10.tar.gz

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警