├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .readthedocs.yaml ├── .travis.yml ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── .themes │ └── armstrong │ │ ├── LICENSE │ │ ├── layout.html │ │ ├── rtd-themes.conf │ │ ├── static │ │ └── rtd.css_t │ │ ├── theme.conf │ │ └── theme.conf.orig ├── Makefile ├── _static │ └── img │ │ ├── add-picture.png │ │ ├── add-shape.png │ │ ├── add-table.png │ │ ├── add-textbox.png │ │ ├── bullet-slide.png │ │ ├── chart-01.png │ │ ├── chart-02.png │ │ ├── chart-03.png │ │ ├── chart-04.png │ │ ├── chart-05.png │ │ ├── chart-06.png │ │ ├── chart-07.png │ │ ├── chart-08.png │ │ ├── chart-09.png │ │ ├── freeform-01.png │ │ ├── freeform-02.png │ │ ├── freeform-03.png │ │ ├── hello-world.png │ │ ├── table-01.png │ │ ├── table-02.png │ │ ├── table-03.png │ │ ├── table-04.png │ │ ├── table-05.png │ │ ├── table-06.png │ │ └── table-07.png ├── _templates │ └── sidebarlinks.html ├── api │ ├── action.rst │ ├── chart-data.rst │ ├── chart.rst │ ├── dml.rst │ ├── enum │ │ ├── ExcelNumFormat.rst │ │ ├── MsoAutoShapeType.rst │ │ ├── MsoAutoSize.rst │ │ ├── MsoColorType.rst │ │ ├── MsoConnectorType.rst │ │ ├── MsoFillType.rst │ │ ├── MsoLanguageId.rst │ │ ├── MsoLineDashStyle.rst │ │ ├── MsoPatternType.rst │ │ ├── MsoShapeType.rst │ │ ├── MsoTextUnderlineType.rst │ │ ├── MsoThemeColorIndex.rst │ │ ├── MsoVerticalAnchor.rst │ │ ├── PpActionType.rst │ │ ├── PpMediaType.rst │ │ ├── PpParagraphAlignment.rst │ │ ├── PpPlaceholderType.rst │ │ ├── XlAxisCrosses.rst │ │ ├── XlCategoryType.rst │ │ ├── XlChartType.rst │ │ ├── XlDataLabelPosition.rst │ │ ├── XlLegendPosition.rst │ │ ├── XlMarkerStyle.rst │ │ ├── XlTickLabelPosition.rst │ │ ├── XlTickMark.rst │ │ └── index.rst │ ├── exc.rst │ ├── image.rst │ ├── placeholders.rst │ ├── presentation.rst │ ├── shapes.rst │ ├── slides.rst │ ├── table.rst │ ├── text.rst │ └── util.rst ├── community │ ├── faq.rst │ ├── support.rst │ └── updates.rst ├── conf.py ├── dev │ ├── analysis │ │ ├── cht-access-xlsx.rst │ │ ├── cht-add-chart.rst │ │ ├── cht-area-chart.rst │ │ ├── cht-axes.rst │ │ ├── cht-axis-has-gridlines.rst │ │ ├── cht-axis-title.rst │ │ ├── cht-axis-unit.rst │ │ ├── cht-bar-chart.rst │ │ ├── cht-bubble-chart.rst │ │ ├── cht-categories.rst │ │ ├── cht-chart-data.rst │ │ ├── cht-chart-overview.rst │ │ ├── cht-chart-shape.rst │ │ ├── cht-chart-title.rst │ │ ├── cht-chart-type.rst │ │ ├── cht-chart.rst │ │ ├── cht-data-labels.rst │ │ ├── cht-date-axis.rst │ │ ├── cht-doughnut-chart.rst │ │ ├── cht-invert-if-negative.rst │ │ ├── cht-legend.rst │ │ ├── cht-line-chart.rst │ │ ├── cht-marker.rst │ │ ├── cht-pie-chart.rst │ │ ├── cht-plot-data.rst │ │ ├── cht-plots.rst │ │ ├── cht-points.rst │ │ ├── cht-radar-chart.rst │ │ ├── cht-series.rst │ │ ├── cht-tick-labels.rst │ │ ├── cht-xy-chart.rst │ │ ├── dml-color.rst │ │ ├── dml-fill.rst │ │ ├── dml-gradient.rst │ │ ├── dml-line.rst │ │ ├── enumerations.rst │ │ ├── index.rst │ │ ├── pkg-coreprops.rst │ │ ├── placeholders │ │ │ ├── index.rst │ │ │ ├── layout-placeholders.rst │ │ │ ├── master-placeholders.rst │ │ │ └── slide-placeholders │ │ │ │ ├── index.rst │ │ │ │ ├── picture-placeholder.rst │ │ │ │ ├── placeholders-in-new-slide.rst │ │ │ │ └── table-placeholder.rst │ │ ├── prs-properties.rst │ │ ├── shp-autofit.rst │ │ ├── shp-autoshape.rst │ │ ├── shp-connector.rst │ │ ├── shp-freeform.rst │ │ ├── shp-graphfrm.rst │ │ ├── shp-group-shape.rst │ │ ├── shp-hyperlink.rst │ │ ├── shp-movie.rst │ │ ├── shp-ole-object.rst │ │ ├── shp-picture.rst │ │ ├── shp-pos-and-size.rst │ │ ├── shp-preset-geom.rst │ │ ├── shp-shadow.rst │ │ ├── shp-shapes.rst │ │ ├── sld-background.rst │ │ ├── sld-base.rst │ │ ├── sld-layout.rst │ │ ├── sld-master.rst │ │ ├── sld-notes-master.rst │ │ ├── sld-notes-slide.rst │ │ ├── sld-slide-shapes.rst │ │ ├── sld-slide.rst │ │ ├── tbl-merge.rst │ │ ├── tbl-table-style.rst │ │ ├── tbl-table.rst │ │ ├── txt-autofit-text.rst │ │ ├── txt-fit-text.rst │ │ ├── txt-font-color.rst │ │ ├── txt-font-typeface.rst │ │ ├── txt-font-underline.rst │ │ ├── txt-hyperlink.rst │ │ ├── txt-para-spacing.rst │ │ └── txt-text.rst │ ├── development_practices.rst │ ├── philosophy.rst │ ├── resources │ │ ├── about_packaging.rst │ │ ├── about_relationships.rst │ │ ├── applescript.rst │ │ ├── index.rst │ │ ├── odds_and_ends.rst │ │ ├── python_packaging.rst │ │ ├── technical_topics.rst │ │ └── web_resources.rst │ ├── runtests.rst │ └── xmlchemy.rst ├── index.rst └── user │ ├── autoshapes.rst │ ├── charts.rst │ ├── concepts.rst │ ├── install.rst │ ├── intro.rst │ ├── notes.rst │ ├── placeholders-understanding.rst │ ├── placeholders-using.rst │ ├── presentations.rst │ ├── quickstart.rst │ ├── slides.rst │ ├── table.rst │ ├── text.rst │ ├── understanding-shapes.rst │ └── use-cases.rst ├── features ├── act-action.feature ├── act-hyperlink.feature ├── cht-axis-props.feature ├── cht-axistitle-props.feature ├── cht-category-access.feature ├── cht-category-props.feature ├── cht-chart.feature ├── cht-charttitle-props.feature ├── cht-data-props.feature ├── cht-datalabels.feature ├── cht-gridlines-props.feature ├── cht-legend-access.feature ├── cht-legend-props.feature ├── cht-marker-props.feature ├── cht-plot-props.feature ├── cht-point-access.feature ├── cht-point-props.feature ├── cht-replace-data.feature ├── cht-series.feature ├── cht-ticklabels-props.feature ├── dml-color.feature ├── dml-effect.feature ├── dml-fill.feature ├── dml-line.feature ├── environment.py ├── ph-inherit-props.feature ├── ph-insert-shape.feature ├── ph-phfmt-props.feature ├── ph-placeholder-props.feature ├── prs-coreprops.feature ├── prs-default-template.feature ├── prs-open-save.feature ├── prs-presentation-props.feature ├── shp-autoshape.feature ├── shp-connector.feature ├── shp-freeform.feature ├── shp-graphicframe.feature ├── shp-groupshape.feature ├── shp-movie-props.feature ├── shp-picture.feature ├── shp-placeholder.feature ├── shp-shapes.feature ├── shp-shared.feature ├── sld-background.feature ├── sld-slide.feature ├── sld-slides.feature ├── steps │ ├── action.py │ ├── axis.py │ ├── background.py │ ├── category.py │ ├── chart.py │ ├── chartdata.py │ ├── color.py │ ├── coreprops.py │ ├── datalabel.py │ ├── effect.py │ ├── fill.py │ ├── font.py │ ├── font_color.py │ ├── helpers.py │ ├── legend.py │ ├── line.py │ ├── picture.py │ ├── placeholder.py │ ├── plot.py │ ├── presentation.py │ ├── series.py │ ├── shape.py │ ├── shapes.py │ ├── slide.py │ ├── slides.py │ ├── table.py │ ├── test_files │ │ ├── 72-dpi.tiff │ │ ├── CVS_LOGO.WMF │ │ ├── act-props.pptm │ │ ├── calibriz.ttf │ │ ├── cht-axis-props.pptx │ │ ├── cht-category-access.pptx │ │ ├── cht-chart-props.pptx │ │ ├── cht-chart-type.pptx │ │ ├── cht-charts.pptx │ │ ├── cht-datalabels.pptx │ │ ├── cht-gridlines-props.pptx │ │ ├── cht-legend-props.pptx │ │ ├── cht-legend.pptx │ │ ├── cht-marker-props.pptx │ │ ├── cht-plot-props.pptx │ │ ├── cht-point-access.pptx │ │ ├── cht-point-props.pptx │ │ ├── cht-replace-data.pptx │ │ ├── cht-series.pptx │ │ ├── cht-ticklabels-props.pptx │ │ ├── dml-effect.pptx │ │ ├── dml-fill.pptx │ │ ├── dml-line.pptx │ │ ├── ext-rels.pptx │ │ ├── extracted-pptx │ │ │ ├── [Content_Types].xml │ │ │ ├── _rels │ │ │ │ └── .rels │ │ │ ├── docProps │ │ │ │ ├── app.xml │ │ │ │ ├── core.xml │ │ │ │ └── thumbnail.jpeg │ │ │ └── ppt │ │ │ │ ├── _rels │ │ │ │ └── presentation.xml.rels │ │ │ │ ├── presProps.xml │ │ │ │ ├── presentation.xml │ │ │ │ ├── printerSettings │ │ │ │ └── printerSettings1.bin │ │ │ │ ├── slideLayouts │ │ │ │ ├── _rels │ │ │ │ │ ├── slideLayout1.xml.rels │ │ │ │ │ ├── slideLayout10.xml.rels │ │ │ │ │ ├── slideLayout11.xml.rels │ │ │ │ │ ├── slideLayout2.xml.rels │ │ │ │ │ ├── slideLayout3.xml.rels │ │ │ │ │ ├── slideLayout4.xml.rels │ │ │ │ │ ├── slideLayout5.xml.rels │ │ │ │ │ ├── slideLayout6.xml.rels │ │ │ │ │ ├── slideLayout7.xml.rels │ │ │ │ │ ├── slideLayout8.xml.rels │ │ │ │ │ └── slideLayout9.xml.rels │ │ │ │ ├── slideLayout1.xml │ │ │ │ ├── slideLayout10.xml │ │ │ │ ├── slideLayout11.xml │ │ │ │ ├── slideLayout2.xml │ │ │ │ ├── slideLayout3.xml │ │ │ │ ├── slideLayout4.xml │ │ │ │ ├── slideLayout5.xml │ │ │ │ ├── slideLayout6.xml │ │ │ │ ├── slideLayout7.xml │ │ │ │ ├── slideLayout8.xml │ │ │ │ └── slideLayout9.xml │ │ │ │ ├── slideMasters │ │ │ │ ├── _rels │ │ │ │ │ └── slideMaster1.xml.rels │ │ │ │ └── slideMaster1.xml │ │ │ │ ├── slides │ │ │ │ ├── _rels │ │ │ │ │ └── slide1.xml.rels │ │ │ │ └── slide1.xml │ │ │ │ ├── tableStyles.xml │ │ │ │ ├── theme │ │ │ │ └── theme1.xml │ │ │ │ └── viewProps.xml │ │ ├── font-color.pptx │ │ ├── just-two-mice.mp4 │ │ ├── just-two-mice.png │ │ ├── lyt-shapes.pptx │ │ ├── minimal.pptx │ │ ├── monty-truth.png │ │ ├── mst-placeholders.pptx │ │ ├── mst-shapes.pptx │ │ ├── mst-slide-layouts.pptx │ │ ├── ph-inherit-props.pptx │ │ ├── ph-populated-placeholders.pptx │ │ ├── ph-unpopulated-placeholders.pptx │ │ ├── pic.emf │ │ ├── prs-add-slide.pptx │ │ ├── prs-notes.pptx │ │ ├── prs-properties.pptx │ │ ├── prs-slide-masters.pptx │ │ ├── python-icon.jpeg │ │ ├── python-powered.png │ │ ├── python.bmp │ │ ├── shp-access-chart.pptx │ │ ├── shp-access-ole-object.pptx │ │ ├── shp-autoshape-adjustments.pptx │ │ ├── shp-autoshape-props.pptx │ │ ├── shp-common-props.pptx │ │ ├── shp-connector-props.pptx │ │ ├── shp-embedded-docx.docx │ │ ├── shp-embedded-pptx.pptx │ │ ├── shp-embedded-xlsx.xlsx │ │ ├── shp-freeform.pptx │ │ ├── shp-groupshape.pptx │ │ ├── shp-movie-props.pptx │ │ ├── shp-picture.pptx │ │ ├── shp-pos-and-size.pptx │ │ ├── shp-shapes.pptx │ │ ├── sld-background.pptx │ │ ├── sld-blank.pptx │ │ ├── sld-notes.pptx │ │ ├── sld-slide.pptx │ │ ├── sld-slides.pptx │ │ ├── sonic.gif │ │ ├── tbl-cell.pptx │ │ ├── test-image-jpg-mime.pptx │ │ ├── test.pptx │ │ ├── txt-fit-text.pptx │ │ ├── txt-font-props.pptx │ │ ├── txt-font-typeface.pptx │ │ ├── txt-paragraph-spacing.pptx │ │ ├── txt-text-frame.pptx │ │ └── txt-text.pptx │ ├── text.py │ └── text_frame.py ├── tbl-cell.feature ├── tbl-column.feature ├── tbl-table.feature ├── txt-fit-text.feature ├── txt-font-color.feature ├── txt-font-props.feature ├── txt-paragraph.feature ├── txt-text.feature └── txt-textframe.feature ├── lab ├── README.txt ├── cust-elm-classes │ ├── gen_oxml_classes.py │ └── main.py └── parse_xsd │ ├── objectify_lab.py │ ├── parse_xsd.py │ ├── slide1.xml │ ├── validate.py │ └── xsd │ ├── dml-chart.xsd │ ├── dml-chartDrawing.xsd │ ├── dml-diagram.xsd │ ├── dml-lockedCanvas.xsd │ ├── dml-main.xsd │ ├── dml-picture.xsd │ ├── dml-spreadsheetDrawing.xsd │ ├── dml-wordprocessingDrawing.xsd │ ├── pml.xsd │ ├── shared-additionalCharacteristics.xsd │ ├── shared-bibliography.xsd │ ├── shared-commonSimpleTypes.xsd │ ├── shared-customXmlDataProperties.xsd │ ├── shared-customXmlSchemaProperties.xsd │ ├── shared-documentPropertiesCustom.xsd │ ├── shared-documentPropertiesExtended.xsd │ ├── shared-documentPropertiesVariantTypes.xsd │ ├── shared-math.xsd │ ├── shared-relationshipReference.xsd │ ├── sml.xsd │ ├── vml-main.xsd │ ├── vml-officeDrawing.xsd │ ├── vml-presentationDrawing.xsd │ ├── vml-spreadsheetDrawing.xsd │ ├── vml-wordprocessingDrawing.xsd │ └── wml.xsd ├── pyproject.toml ├── requirements-dev.txt ├── requirements-docs.txt ├── requirements-test.txt ├── requirements.txt ├── spec ├── ISO-IEC-29500-1 │ ├── ISO-IEC-29500-1.pdf │ └── schemas │ │ ├── dml-geometries │ │ └── OfficeOpenXML-DrawingMLGeometries │ │ │ ├── presetShapeDefinitions.xml │ │ │ └── presetTextWarpDefinitions.xml │ │ └── xsd │ │ ├── dml-chart.xsd │ │ ├── dml-chartDrawing.xsd │ │ ├── dml-diagram.xsd │ │ ├── dml-lockedCanvas.xsd │ │ ├── dml-main.xsd │ │ ├── dml-picture.xsd │ │ ├── dml-spreadsheetDrawing.xsd │ │ ├── dml-wordprocessingDrawing.xsd │ │ ├── pml.xsd │ │ ├── shared-additionalCharacteristics.xsd │ │ ├── shared-bibliography.xsd │ │ ├── shared-commonSimpleTypes.xsd │ │ ├── shared-customXmlDataProperties.xsd │ │ ├── shared-customXmlSchemaProperties.xsd │ │ ├── shared-documentPropertiesCustom.xsd │ │ ├── shared-documentPropertiesExtended.xsd │ │ ├── shared-documentPropertiesVariantTypes.xsd │ │ ├── shared-math.xsd │ │ ├── shared-relationshipReference.xsd │ │ ├── sml.xsd │ │ └── wml.xsd ├── ISO-IEC-29500-2 │ ├── ISO-IEC-29500-2.pdf │ └── opc-xsd │ │ ├── opc-contentTypes.xsd │ │ ├── opc-coreProperties.xsd │ │ ├── opc-digSig.xsd │ │ └── opc-relationships.xsd ├── ISO-IEC-29500-3 │ └── ISO-IEC-29500-3.pdf ├── ISO-IEC-29500-4 │ ├── ISO-IEC-29500-4.pdf │ └── xsd │ │ ├── dml-chart.xsd │ │ ├── dml-chartDrawing.xsd │ │ ├── dml-diagram.xsd │ │ ├── dml-lockedCanvas.xsd │ │ ├── dml-main.xsd │ │ ├── dml-picture.xsd │ │ ├── dml-spreadsheetDrawing.xsd │ │ ├── dml-wordprocessingDrawing.xsd │ │ ├── pml.xsd │ │ ├── shared-additionalCharacteristics.xsd │ │ ├── shared-bibliography.xsd │ │ ├── shared-commonSimpleTypes.xsd │ │ ├── shared-customXmlDataProperties.xsd │ │ ├── shared-customXmlSchemaProperties.xsd │ │ ├── shared-documentPropertiesCustom.xsd │ │ ├── shared-documentPropertiesExtended.xsd │ │ ├── shared-documentPropertiesVariantTypes.xsd │ │ ├── shared-math.xsd │ │ ├── shared-relationshipReference.xsd │ │ ├── sml.xsd │ │ ├── vml-main.xsd │ │ ├── vml-officeDrawing.xsd │ │ ├── vml-presentationDrawing.xsd │ │ ├── vml-spreadsheetDrawing.xsd │ │ ├── vml-wordprocessingDrawing.xsd │ │ └── wml.xsd └── gen_spec │ ├── Makefile │ ├── enum │ └── MsoAutoShapeType.xml │ ├── gen_spec.py │ ├── sql │ └── dump.sql │ └── src_data │ ├── enums │ └── MsoAutoShapeType │ │ ├── MsoAutoShapeType.txt │ │ ├── ST_ShapeType.xml │ │ └── mapping.txt │ ├── msoAutoShapeType.py │ └── scratch.py ├── src └── pptx │ ├── __init__.py │ ├── action.py │ ├── api.py │ ├── chart │ ├── __init__.py │ ├── axis.py │ ├── category.py │ ├── chart.py │ ├── data.py │ ├── datalabel.py │ ├── legend.py │ ├── marker.py │ ├── plot.py │ ├── point.py │ ├── series.py │ ├── xlsx.py │ └── xmlwriter.py │ ├── dml │ ├── __init__.py │ ├── chtfmt.py │ ├── color.py │ ├── effect.py │ ├── fill.py │ └── line.py │ ├── enum │ ├── __init__.py │ ├── action.py │ ├── base.py │ ├── chart.py │ ├── dml.py │ ├── lang.py │ ├── shapes.py │ └── text.py │ ├── exc.py │ ├── media.py │ ├── opc │ ├── __init__.py │ ├── constants.py │ ├── oxml.py │ ├── package.py │ ├── packuri.py │ ├── serialized.py │ ├── shared.py │ └── spec.py │ ├── oxml │ ├── __init__.py │ ├── action.py │ ├── chart │ │ ├── __init__.py │ │ ├── axis.py │ │ ├── chart.py │ │ ├── datalabel.py │ │ ├── legend.py │ │ ├── marker.py │ │ ├── plot.py │ │ ├── series.py │ │ └── shared.py │ ├── coreprops.py │ ├── dml │ │ ├── __init__.py │ │ ├── color.py │ │ ├── fill.py │ │ └── line.py │ ├── ns.py │ ├── presentation.py │ ├── shapes │ │ ├── __init__.py │ │ ├── autoshape.py │ │ ├── connector.py │ │ ├── graphfrm.py │ │ ├── groupshape.py │ │ ├── picture.py │ │ └── shared.py │ ├── simpletypes.py │ ├── slide.py │ ├── table.py │ ├── text.py │ ├── theme.py │ └── xmlchemy.py │ ├── package.py │ ├── parts │ ├── __init__.py │ ├── chart.py │ ├── coreprops.py │ ├── embeddedpackage.py │ ├── image.py │ ├── media.py │ ├── presentation.py │ └── slide.py │ ├── presentation.py │ ├── py.typed │ ├── shapes │ ├── __init__.py │ ├── autoshape.py │ ├── base.py │ ├── connector.py │ ├── freeform.py │ ├── graphfrm.py │ ├── group.py │ ├── picture.py │ ├── placeholder.py │ └── shapetree.py │ ├── shared.py │ ├── slide.py │ ├── spec.py │ ├── table.py │ ├── templates │ ├── default.pptx │ ├── docx-icon.emf │ ├── generic-icon.emf │ ├── notes.xml │ ├── notesMaster.xml │ ├── pptx-icon.emf │ ├── theme.xml │ └── xlsx-icon.emf │ ├── text │ ├── __init__.py │ ├── fonts.py │ ├── layout.py │ └── text.py │ ├── types.py │ └── util.py ├── tests ├── __init__.py ├── chart │ ├── __init__.py │ ├── test_axis.py │ ├── test_category.py │ ├── test_chart.py │ ├── test_data.py │ ├── test_datalabel.py │ ├── test_legend.py │ ├── test_marker.py │ ├── test_plot.py │ ├── test_point.py │ ├── test_series.py │ ├── test_xlsx.py │ └── test_xmlwriter.py ├── dml │ ├── __init__.py │ ├── test_chtfmt.py │ ├── test_color.py │ ├── test_effect.py │ ├── test_fill.py │ └── test_line.py ├── enum │ ├── __init__.py │ ├── test_base.py │ └── test_shapes.py ├── opc │ ├── __init__.py │ ├── test_oxml.py │ ├── test_package.py │ ├── test_packuri.py │ └── test_serialized.py ├── oxml │ ├── __init__.py │ ├── shapes │ │ ├── __init__.py │ │ ├── test_autoshape.py │ │ ├── test_graphfrm.py │ │ ├── test_groupshape.py │ │ └── test_picture.py │ ├── test___init__.py │ ├── test_dml.py │ ├── test_ns.py │ ├── test_presentation.py │ ├── test_simpletypes.py │ ├── test_slide.py │ ├── test_table.py │ ├── test_theme.py │ ├── test_xmlchemy.py │ └── unitdata │ │ ├── __init__.py │ │ ├── dml.py │ │ ├── shape.py │ │ └── text.py ├── parts │ ├── __init__.py │ ├── test_chart.py │ ├── test_coreprops.py │ ├── test_embeddedpackage.py │ ├── test_image.py │ ├── test_media.py │ ├── test_presentation.py │ └── test_slide.py ├── shapes │ ├── __init__.py │ ├── test_autoshape.py │ ├── test_base.py │ ├── test_connector.py │ ├── test_freeform.py │ ├── test_graphfrm.py │ ├── test_group.py │ ├── test_picture.py │ ├── test_placeholder.py │ └── test_shapetree.py ├── test_action.py ├── test_api.py ├── test_files │ ├── calibriz.ttf │ ├── cdw-logo.eps │ ├── dummy.mp4 │ ├── expanded_pptx │ │ ├── [Content_Types].xml │ │ ├── _rels │ │ │ └── .rels │ │ ├── docProps │ │ │ ├── app.xml │ │ │ ├── core.xml │ │ │ └── thumbnail.jpeg │ │ └── ppt │ │ │ ├── _rels │ │ │ └── presentation.xml.rels │ │ │ ├── presProps.xml │ │ │ ├── presentation.xml │ │ │ ├── printerSettings │ │ │ └── printerSettings1.bin │ │ │ ├── slideLayouts │ │ │ ├── _rels │ │ │ │ ├── slideLayout1.xml.rels │ │ │ │ ├── slideLayout10.xml.rels │ │ │ │ ├── slideLayout11.xml.rels │ │ │ │ ├── slideLayout2.xml.rels │ │ │ │ ├── slideLayout3.xml.rels │ │ │ │ ├── slideLayout4.xml.rels │ │ │ │ ├── slideLayout5.xml.rels │ │ │ │ ├── slideLayout6.xml.rels │ │ │ │ ├── slideLayout7.xml.rels │ │ │ │ ├── slideLayout8.xml.rels │ │ │ │ └── slideLayout9.xml.rels │ │ │ ├── slideLayout1.xml │ │ │ ├── slideLayout10.xml │ │ │ ├── slideLayout11.xml │ │ │ ├── slideLayout2.xml │ │ │ ├── slideLayout3.xml │ │ │ ├── slideLayout4.xml │ │ │ ├── slideLayout5.xml │ │ │ ├── slideLayout6.xml │ │ │ ├── slideLayout7.xml │ │ │ ├── slideLayout8.xml │ │ │ └── slideLayout9.xml │ │ │ ├── slideMasters │ │ │ ├── _rels │ │ │ │ └── slideMaster1.xml.rels │ │ │ └── slideMaster1.xml │ │ │ ├── slides │ │ │ ├── _rels │ │ │ │ └── slide1.xml.rels │ │ │ └── slide1.xml │ │ │ ├── tableStyles.xml │ │ │ ├── theme │ │ │ └── theme1.xml │ │ │ └── viewProps.xml │ ├── minimal.pptx │ ├── minimal_slide.xml │ ├── missing_rels_item.pptx │ ├── monty-truth.png │ ├── no-core-props.pptx │ ├── no-slides.pptx │ ├── presentation.xml │ ├── python-icon.jpeg │ ├── python-powered.png │ ├── python.bmp │ ├── slideLayout1.xml │ ├── snippets │ │ ├── 2x2-area-date.txt │ │ ├── 2x2-area-float.txt │ │ ├── 2x2-area-stacked-100.txt │ │ ├── 2x2-area-stacked.txt │ │ ├── 2x2-area.txt │ │ ├── 2x2-bar-clustered-date.txt │ │ ├── 2x2-bar-clustered-float.txt │ │ ├── 2x2-bar-clustered.txt │ │ ├── 2x2-bar-stacked-100.txt │ │ ├── 2x2-bar-stacked.txt │ │ ├── 2x2-column-clustered.txt │ │ ├── 2x2-column-stacked-100.txt │ │ ├── 2x2-column-stacked.txt │ │ ├── 2x2-line-date.txt │ │ ├── 2x2-line-float.txt │ │ ├── 2x2-line-markers-stacked-100.txt │ │ ├── 2x2-line-markers-stacked.txt │ │ ├── 2x2-line-markers.txt │ │ ├── 2x2-line-stacked-100.txt │ │ ├── 2x2-line-stacked.txt │ │ ├── 2x2-line.txt │ │ ├── 2x3-bubble-3d.txt │ │ ├── 2x3-bubble.txt │ │ ├── 2x3-xy-lines-no-markers.txt │ │ ├── 2x3-xy-lines.txt │ │ ├── 2x3-xy-smooth-no-markers.txt │ │ ├── 2x3-xy-smooth.txt │ │ ├── 2x3-xy.txt │ │ ├── 2x5-radar.txt │ │ ├── 3x1-pie-exploded.txt │ │ ├── 3x1-pie.txt │ │ ├── 3x2-doughnut-exploded.txt │ │ ├── 3x2-doughnut.txt │ │ ├── 4x2-multi-cat-bar.txt │ │ ├── adjust-ser-count.txt │ │ ├── cat-labels.txt │ │ ├── content-types-xml.txt │ │ ├── default-notes.txt │ │ ├── default-notesMaster.txt │ │ ├── default-theme.txt │ │ ├── freeform.txt │ │ ├── package-rels-xml.txt │ │ ├── placeholders.txt │ │ ├── presentation-rels-xml.txt │ │ ├── relationships.txt │ │ ├── rels-load-from-xml.txt │ │ ├── rewrite-ser.txt │ │ └── timing.txt │ ├── test.pptx │ └── test_slides.pptx ├── test_media.py ├── test_package.py ├── test_presentation.py ├── test_shared.py ├── test_slide.py ├── test_table.py ├── test_util.py ├── text │ ├── __init__.py │ ├── test_fonts.py │ ├── test_layout.py │ └── test_text.py ├── unitdata.py └── unitutil │ ├── __init__.py │ ├── cxml.py │ ├── file.py │ └── mock.py ├── tox.ini └── typings ├── behave ├── __init__.pyi └── runner.pyi └── lxml ├── _types.pyi └── etree ├── __init__.pyi ├── _classlookup.pyi ├── _cleanup.pyi ├── _element.pyi ├── _module_func.pyi ├── _module_misc.pyi ├── _nsclasses.pyi └── _parser.pyi /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/.travis.yml -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/README.rst -------------------------------------------------------------------------------- /docs/.themes/armstrong/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/.themes/armstrong/LICENSE -------------------------------------------------------------------------------- /docs/.themes/armstrong/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/.themes/armstrong/layout.html -------------------------------------------------------------------------------- /docs/.themes/armstrong/rtd-themes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/.themes/armstrong/rtd-themes.conf -------------------------------------------------------------------------------- /docs/.themes/armstrong/static/rtd.css_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/.themes/armstrong/static/rtd.css_t -------------------------------------------------------------------------------- /docs/.themes/armstrong/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/.themes/armstrong/theme.conf -------------------------------------------------------------------------------- /docs/.themes/armstrong/theme.conf.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/.themes/armstrong/theme.conf.orig -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/img/add-picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_static/img/add-picture.png -------------------------------------------------------------------------------- /docs/_static/img/add-shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_static/img/add-shape.png -------------------------------------------------------------------------------- /docs/_static/img/add-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_static/img/add-table.png -------------------------------------------------------------------------------- /docs/_static/img/add-textbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_static/img/add-textbox.png -------------------------------------------------------------------------------- /docs/_static/img/bullet-slide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_static/img/bullet-slide.png -------------------------------------------------------------------------------- /docs/_static/img/chart-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_static/img/chart-01.png -------------------------------------------------------------------------------- /docs/_static/img/chart-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_static/img/chart-02.png -------------------------------------------------------------------------------- /docs/_static/img/chart-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_static/img/chart-03.png -------------------------------------------------------------------------------- /docs/_static/img/chart-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_static/img/chart-04.png -------------------------------------------------------------------------------- /docs/_static/img/chart-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_static/img/chart-05.png -------------------------------------------------------------------------------- /docs/_static/img/chart-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_static/img/chart-06.png -------------------------------------------------------------------------------- /docs/_static/img/chart-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_static/img/chart-07.png -------------------------------------------------------------------------------- /docs/_static/img/chart-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_static/img/chart-08.png -------------------------------------------------------------------------------- /docs/_static/img/chart-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_static/img/chart-09.png -------------------------------------------------------------------------------- /docs/_static/img/freeform-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_static/img/freeform-01.png -------------------------------------------------------------------------------- /docs/_static/img/freeform-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_static/img/freeform-02.png -------------------------------------------------------------------------------- /docs/_static/img/freeform-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_static/img/freeform-03.png -------------------------------------------------------------------------------- /docs/_static/img/hello-world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_static/img/hello-world.png -------------------------------------------------------------------------------- /docs/_static/img/table-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_static/img/table-01.png -------------------------------------------------------------------------------- /docs/_static/img/table-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_static/img/table-02.png -------------------------------------------------------------------------------- /docs/_static/img/table-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_static/img/table-03.png -------------------------------------------------------------------------------- /docs/_static/img/table-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_static/img/table-04.png -------------------------------------------------------------------------------- /docs/_static/img/table-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_static/img/table-05.png -------------------------------------------------------------------------------- /docs/_static/img/table-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_static/img/table-06.png -------------------------------------------------------------------------------- /docs/_static/img/table-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_static/img/table-07.png -------------------------------------------------------------------------------- /docs/_templates/sidebarlinks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/_templates/sidebarlinks.html -------------------------------------------------------------------------------- /docs/api/action.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/action.rst -------------------------------------------------------------------------------- /docs/api/chart-data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/chart-data.rst -------------------------------------------------------------------------------- /docs/api/chart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/chart.rst -------------------------------------------------------------------------------- /docs/api/dml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/dml.rst -------------------------------------------------------------------------------- /docs/api/enum/ExcelNumFormat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/ExcelNumFormat.rst -------------------------------------------------------------------------------- /docs/api/enum/MsoAutoShapeType.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/MsoAutoShapeType.rst -------------------------------------------------------------------------------- /docs/api/enum/MsoAutoSize.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/MsoAutoSize.rst -------------------------------------------------------------------------------- /docs/api/enum/MsoColorType.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/MsoColorType.rst -------------------------------------------------------------------------------- /docs/api/enum/MsoConnectorType.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/MsoConnectorType.rst -------------------------------------------------------------------------------- /docs/api/enum/MsoFillType.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/MsoFillType.rst -------------------------------------------------------------------------------- /docs/api/enum/MsoLanguageId.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/MsoLanguageId.rst -------------------------------------------------------------------------------- /docs/api/enum/MsoLineDashStyle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/MsoLineDashStyle.rst -------------------------------------------------------------------------------- /docs/api/enum/MsoPatternType.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/MsoPatternType.rst -------------------------------------------------------------------------------- /docs/api/enum/MsoShapeType.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/MsoShapeType.rst -------------------------------------------------------------------------------- /docs/api/enum/MsoTextUnderlineType.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/MsoTextUnderlineType.rst -------------------------------------------------------------------------------- /docs/api/enum/MsoThemeColorIndex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/MsoThemeColorIndex.rst -------------------------------------------------------------------------------- /docs/api/enum/MsoVerticalAnchor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/MsoVerticalAnchor.rst -------------------------------------------------------------------------------- /docs/api/enum/PpActionType.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/PpActionType.rst -------------------------------------------------------------------------------- /docs/api/enum/PpMediaType.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/PpMediaType.rst -------------------------------------------------------------------------------- /docs/api/enum/PpParagraphAlignment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/PpParagraphAlignment.rst -------------------------------------------------------------------------------- /docs/api/enum/PpPlaceholderType.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/PpPlaceholderType.rst -------------------------------------------------------------------------------- /docs/api/enum/XlAxisCrosses.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/XlAxisCrosses.rst -------------------------------------------------------------------------------- /docs/api/enum/XlCategoryType.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/XlCategoryType.rst -------------------------------------------------------------------------------- /docs/api/enum/XlChartType.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/XlChartType.rst -------------------------------------------------------------------------------- /docs/api/enum/XlDataLabelPosition.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/XlDataLabelPosition.rst -------------------------------------------------------------------------------- /docs/api/enum/XlLegendPosition.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/XlLegendPosition.rst -------------------------------------------------------------------------------- /docs/api/enum/XlMarkerStyle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/XlMarkerStyle.rst -------------------------------------------------------------------------------- /docs/api/enum/XlTickLabelPosition.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/XlTickLabelPosition.rst -------------------------------------------------------------------------------- /docs/api/enum/XlTickMark.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/XlTickMark.rst -------------------------------------------------------------------------------- /docs/api/enum/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/enum/index.rst -------------------------------------------------------------------------------- /docs/api/exc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/exc.rst -------------------------------------------------------------------------------- /docs/api/image.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/image.rst -------------------------------------------------------------------------------- /docs/api/placeholders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/placeholders.rst -------------------------------------------------------------------------------- /docs/api/presentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/presentation.rst -------------------------------------------------------------------------------- /docs/api/shapes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/shapes.rst -------------------------------------------------------------------------------- /docs/api/slides.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/slides.rst -------------------------------------------------------------------------------- /docs/api/table.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/table.rst -------------------------------------------------------------------------------- /docs/api/text.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/text.rst -------------------------------------------------------------------------------- /docs/api/util.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/api/util.rst -------------------------------------------------------------------------------- /docs/community/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/community/faq.rst -------------------------------------------------------------------------------- /docs/community/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/community/support.rst -------------------------------------------------------------------------------- /docs/community/updates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/community/updates.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/dev/analysis/cht-access-xlsx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-access-xlsx.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-add-chart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-add-chart.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-area-chart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-area-chart.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-axes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-axes.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-axis-has-gridlines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-axis-has-gridlines.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-axis-title.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-axis-title.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-axis-unit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-axis-unit.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-bar-chart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-bar-chart.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-bubble-chart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-bubble-chart.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-categories.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-categories.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-chart-data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-chart-data.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-chart-overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-chart-overview.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-chart-shape.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-chart-shape.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-chart-title.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-chart-title.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-chart-type.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-chart-type.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-chart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-chart.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-data-labels.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-data-labels.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-date-axis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-date-axis.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-doughnut-chart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-doughnut-chart.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-invert-if-negative.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-invert-if-negative.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-legend.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-legend.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-line-chart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-line-chart.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-marker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-marker.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-pie-chart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-pie-chart.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-plot-data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-plot-data.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-plots.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-plots.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-points.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-points.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-radar-chart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-radar-chart.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-series.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-series.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-tick-labels.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-tick-labels.rst -------------------------------------------------------------------------------- /docs/dev/analysis/cht-xy-chart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/cht-xy-chart.rst -------------------------------------------------------------------------------- /docs/dev/analysis/dml-color.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/dml-color.rst -------------------------------------------------------------------------------- /docs/dev/analysis/dml-fill.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/dml-fill.rst -------------------------------------------------------------------------------- /docs/dev/analysis/dml-gradient.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/dml-gradient.rst -------------------------------------------------------------------------------- /docs/dev/analysis/dml-line.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/dml-line.rst -------------------------------------------------------------------------------- /docs/dev/analysis/enumerations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/enumerations.rst -------------------------------------------------------------------------------- /docs/dev/analysis/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/index.rst -------------------------------------------------------------------------------- /docs/dev/analysis/pkg-coreprops.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/pkg-coreprops.rst -------------------------------------------------------------------------------- /docs/dev/analysis/placeholders/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/placeholders/index.rst -------------------------------------------------------------------------------- /docs/dev/analysis/placeholders/layout-placeholders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/placeholders/layout-placeholders.rst -------------------------------------------------------------------------------- /docs/dev/analysis/placeholders/master-placeholders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/placeholders/master-placeholders.rst -------------------------------------------------------------------------------- /docs/dev/analysis/placeholders/slide-placeholders/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/placeholders/slide-placeholders/index.rst -------------------------------------------------------------------------------- /docs/dev/analysis/placeholders/slide-placeholders/picture-placeholder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/placeholders/slide-placeholders/picture-placeholder.rst -------------------------------------------------------------------------------- /docs/dev/analysis/placeholders/slide-placeholders/placeholders-in-new-slide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/placeholders/slide-placeholders/placeholders-in-new-slide.rst -------------------------------------------------------------------------------- /docs/dev/analysis/placeholders/slide-placeholders/table-placeholder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/placeholders/slide-placeholders/table-placeholder.rst -------------------------------------------------------------------------------- /docs/dev/analysis/prs-properties.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/prs-properties.rst -------------------------------------------------------------------------------- /docs/dev/analysis/shp-autofit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/shp-autofit.rst -------------------------------------------------------------------------------- /docs/dev/analysis/shp-autoshape.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/shp-autoshape.rst -------------------------------------------------------------------------------- /docs/dev/analysis/shp-connector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/shp-connector.rst -------------------------------------------------------------------------------- /docs/dev/analysis/shp-freeform.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/shp-freeform.rst -------------------------------------------------------------------------------- /docs/dev/analysis/shp-graphfrm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/shp-graphfrm.rst -------------------------------------------------------------------------------- /docs/dev/analysis/shp-group-shape.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/shp-group-shape.rst -------------------------------------------------------------------------------- /docs/dev/analysis/shp-hyperlink.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/shp-hyperlink.rst -------------------------------------------------------------------------------- /docs/dev/analysis/shp-movie.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/shp-movie.rst -------------------------------------------------------------------------------- /docs/dev/analysis/shp-ole-object.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/shp-ole-object.rst -------------------------------------------------------------------------------- /docs/dev/analysis/shp-picture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/shp-picture.rst -------------------------------------------------------------------------------- /docs/dev/analysis/shp-pos-and-size.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/shp-pos-and-size.rst -------------------------------------------------------------------------------- /docs/dev/analysis/shp-preset-geom.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/shp-preset-geom.rst -------------------------------------------------------------------------------- /docs/dev/analysis/shp-shadow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/shp-shadow.rst -------------------------------------------------------------------------------- /docs/dev/analysis/shp-shapes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/shp-shapes.rst -------------------------------------------------------------------------------- /docs/dev/analysis/sld-background.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/sld-background.rst -------------------------------------------------------------------------------- /docs/dev/analysis/sld-base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/sld-base.rst -------------------------------------------------------------------------------- /docs/dev/analysis/sld-layout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/sld-layout.rst -------------------------------------------------------------------------------- /docs/dev/analysis/sld-master.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/sld-master.rst -------------------------------------------------------------------------------- /docs/dev/analysis/sld-notes-master.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/sld-notes-master.rst -------------------------------------------------------------------------------- /docs/dev/analysis/sld-notes-slide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/sld-notes-slide.rst -------------------------------------------------------------------------------- /docs/dev/analysis/sld-slide-shapes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/sld-slide-shapes.rst -------------------------------------------------------------------------------- /docs/dev/analysis/sld-slide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/sld-slide.rst -------------------------------------------------------------------------------- /docs/dev/analysis/tbl-merge.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/tbl-merge.rst -------------------------------------------------------------------------------- /docs/dev/analysis/tbl-table-style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/tbl-table-style.rst -------------------------------------------------------------------------------- /docs/dev/analysis/tbl-table.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/tbl-table.rst -------------------------------------------------------------------------------- /docs/dev/analysis/txt-autofit-text.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/txt-autofit-text.rst -------------------------------------------------------------------------------- /docs/dev/analysis/txt-fit-text.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/txt-fit-text.rst -------------------------------------------------------------------------------- /docs/dev/analysis/txt-font-color.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/txt-font-color.rst -------------------------------------------------------------------------------- /docs/dev/analysis/txt-font-typeface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/txt-font-typeface.rst -------------------------------------------------------------------------------- /docs/dev/analysis/txt-font-underline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/txt-font-underline.rst -------------------------------------------------------------------------------- /docs/dev/analysis/txt-hyperlink.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/txt-hyperlink.rst -------------------------------------------------------------------------------- /docs/dev/analysis/txt-para-spacing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/txt-para-spacing.rst -------------------------------------------------------------------------------- /docs/dev/analysis/txt-text.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/analysis/txt-text.rst -------------------------------------------------------------------------------- /docs/dev/development_practices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/development_practices.rst -------------------------------------------------------------------------------- /docs/dev/philosophy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/philosophy.rst -------------------------------------------------------------------------------- /docs/dev/resources/about_packaging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/resources/about_packaging.rst -------------------------------------------------------------------------------- /docs/dev/resources/about_relationships.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/resources/about_relationships.rst -------------------------------------------------------------------------------- /docs/dev/resources/applescript.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/resources/applescript.rst -------------------------------------------------------------------------------- /docs/dev/resources/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/resources/index.rst -------------------------------------------------------------------------------- /docs/dev/resources/odds_and_ends.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/resources/odds_and_ends.rst -------------------------------------------------------------------------------- /docs/dev/resources/python_packaging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/resources/python_packaging.rst -------------------------------------------------------------------------------- /docs/dev/resources/technical_topics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/resources/technical_topics.rst -------------------------------------------------------------------------------- /docs/dev/resources/web_resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/resources/web_resources.rst -------------------------------------------------------------------------------- /docs/dev/runtests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/runtests.rst -------------------------------------------------------------------------------- /docs/dev/xmlchemy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/dev/xmlchemy.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/user/autoshapes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/user/autoshapes.rst -------------------------------------------------------------------------------- /docs/user/charts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/user/charts.rst -------------------------------------------------------------------------------- /docs/user/concepts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/user/concepts.rst -------------------------------------------------------------------------------- /docs/user/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/user/install.rst -------------------------------------------------------------------------------- /docs/user/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/user/intro.rst -------------------------------------------------------------------------------- /docs/user/notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/user/notes.rst -------------------------------------------------------------------------------- /docs/user/placeholders-understanding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/user/placeholders-understanding.rst -------------------------------------------------------------------------------- /docs/user/placeholders-using.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/user/placeholders-using.rst -------------------------------------------------------------------------------- /docs/user/presentations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/user/presentations.rst -------------------------------------------------------------------------------- /docs/user/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/user/quickstart.rst -------------------------------------------------------------------------------- /docs/user/slides.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/user/slides.rst -------------------------------------------------------------------------------- /docs/user/table.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/user/table.rst -------------------------------------------------------------------------------- /docs/user/text.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/user/text.rst -------------------------------------------------------------------------------- /docs/user/understanding-shapes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/user/understanding-shapes.rst -------------------------------------------------------------------------------- /docs/user/use-cases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/docs/user/use-cases.rst -------------------------------------------------------------------------------- /features/act-action.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/act-action.feature -------------------------------------------------------------------------------- /features/act-hyperlink.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/act-hyperlink.feature -------------------------------------------------------------------------------- /features/cht-axis-props.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/cht-axis-props.feature -------------------------------------------------------------------------------- /features/cht-axistitle-props.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/cht-axistitle-props.feature -------------------------------------------------------------------------------- /features/cht-category-access.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/cht-category-access.feature -------------------------------------------------------------------------------- /features/cht-category-props.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/cht-category-props.feature -------------------------------------------------------------------------------- /features/cht-chart.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/cht-chart.feature -------------------------------------------------------------------------------- /features/cht-charttitle-props.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/cht-charttitle-props.feature -------------------------------------------------------------------------------- /features/cht-data-props.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/cht-data-props.feature -------------------------------------------------------------------------------- /features/cht-datalabels.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/cht-datalabels.feature -------------------------------------------------------------------------------- /features/cht-gridlines-props.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/cht-gridlines-props.feature -------------------------------------------------------------------------------- /features/cht-legend-access.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/cht-legend-access.feature -------------------------------------------------------------------------------- /features/cht-legend-props.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/cht-legend-props.feature -------------------------------------------------------------------------------- /features/cht-marker-props.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/cht-marker-props.feature -------------------------------------------------------------------------------- /features/cht-plot-props.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/cht-plot-props.feature -------------------------------------------------------------------------------- /features/cht-point-access.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/cht-point-access.feature -------------------------------------------------------------------------------- /features/cht-point-props.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/cht-point-props.feature -------------------------------------------------------------------------------- /features/cht-replace-data.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/cht-replace-data.feature -------------------------------------------------------------------------------- /features/cht-series.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/cht-series.feature -------------------------------------------------------------------------------- /features/cht-ticklabels-props.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/cht-ticklabels-props.feature -------------------------------------------------------------------------------- /features/dml-color.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/dml-color.feature -------------------------------------------------------------------------------- /features/dml-effect.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/dml-effect.feature -------------------------------------------------------------------------------- /features/dml-fill.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/dml-fill.feature -------------------------------------------------------------------------------- /features/dml-line.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/dml-line.feature -------------------------------------------------------------------------------- /features/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/environment.py -------------------------------------------------------------------------------- /features/ph-inherit-props.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/ph-inherit-props.feature -------------------------------------------------------------------------------- /features/ph-insert-shape.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/ph-insert-shape.feature -------------------------------------------------------------------------------- /features/ph-phfmt-props.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/ph-phfmt-props.feature -------------------------------------------------------------------------------- /features/ph-placeholder-props.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/ph-placeholder-props.feature -------------------------------------------------------------------------------- /features/prs-coreprops.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/prs-coreprops.feature -------------------------------------------------------------------------------- /features/prs-default-template.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/prs-default-template.feature -------------------------------------------------------------------------------- /features/prs-open-save.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/prs-open-save.feature -------------------------------------------------------------------------------- /features/prs-presentation-props.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/prs-presentation-props.feature -------------------------------------------------------------------------------- /features/shp-autoshape.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/shp-autoshape.feature -------------------------------------------------------------------------------- /features/shp-connector.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/shp-connector.feature -------------------------------------------------------------------------------- /features/shp-freeform.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/shp-freeform.feature -------------------------------------------------------------------------------- /features/shp-graphicframe.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/shp-graphicframe.feature -------------------------------------------------------------------------------- /features/shp-groupshape.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/shp-groupshape.feature -------------------------------------------------------------------------------- /features/shp-movie-props.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/shp-movie-props.feature -------------------------------------------------------------------------------- /features/shp-picture.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/shp-picture.feature -------------------------------------------------------------------------------- /features/shp-placeholder.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/shp-placeholder.feature -------------------------------------------------------------------------------- /features/shp-shapes.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/shp-shapes.feature -------------------------------------------------------------------------------- /features/shp-shared.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/shp-shared.feature -------------------------------------------------------------------------------- /features/sld-background.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/sld-background.feature -------------------------------------------------------------------------------- /features/sld-slide.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/sld-slide.feature -------------------------------------------------------------------------------- /features/sld-slides.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/sld-slides.feature -------------------------------------------------------------------------------- /features/steps/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/action.py -------------------------------------------------------------------------------- /features/steps/axis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/axis.py -------------------------------------------------------------------------------- /features/steps/background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/background.py -------------------------------------------------------------------------------- /features/steps/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/category.py -------------------------------------------------------------------------------- /features/steps/chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/chart.py -------------------------------------------------------------------------------- /features/steps/chartdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/chartdata.py -------------------------------------------------------------------------------- /features/steps/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/color.py -------------------------------------------------------------------------------- /features/steps/coreprops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/coreprops.py -------------------------------------------------------------------------------- /features/steps/datalabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/datalabel.py -------------------------------------------------------------------------------- /features/steps/effect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/effect.py -------------------------------------------------------------------------------- /features/steps/fill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/fill.py -------------------------------------------------------------------------------- /features/steps/font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/font.py -------------------------------------------------------------------------------- /features/steps/font_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/font_color.py -------------------------------------------------------------------------------- /features/steps/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/helpers.py -------------------------------------------------------------------------------- /features/steps/legend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/legend.py -------------------------------------------------------------------------------- /features/steps/line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/line.py -------------------------------------------------------------------------------- /features/steps/picture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/picture.py -------------------------------------------------------------------------------- /features/steps/placeholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/placeholder.py -------------------------------------------------------------------------------- /features/steps/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/plot.py -------------------------------------------------------------------------------- /features/steps/presentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/presentation.py -------------------------------------------------------------------------------- /features/steps/series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/series.py -------------------------------------------------------------------------------- /features/steps/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/shape.py -------------------------------------------------------------------------------- /features/steps/shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/shapes.py -------------------------------------------------------------------------------- /features/steps/slide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/slide.py -------------------------------------------------------------------------------- /features/steps/slides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/slides.py -------------------------------------------------------------------------------- /features/steps/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/table.py -------------------------------------------------------------------------------- /features/steps/test_files/72-dpi.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/72-dpi.tiff -------------------------------------------------------------------------------- /features/steps/test_files/CVS_LOGO.WMF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/CVS_LOGO.WMF -------------------------------------------------------------------------------- /features/steps/test_files/act-props.pptm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/act-props.pptm -------------------------------------------------------------------------------- /features/steps/test_files/calibriz.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/calibriz.ttf -------------------------------------------------------------------------------- /features/steps/test_files/cht-axis-props.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/cht-axis-props.pptx -------------------------------------------------------------------------------- /features/steps/test_files/cht-category-access.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/cht-category-access.pptx -------------------------------------------------------------------------------- /features/steps/test_files/cht-chart-props.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/cht-chart-props.pptx -------------------------------------------------------------------------------- /features/steps/test_files/cht-chart-type.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/cht-chart-type.pptx -------------------------------------------------------------------------------- /features/steps/test_files/cht-charts.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/cht-charts.pptx -------------------------------------------------------------------------------- /features/steps/test_files/cht-datalabels.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/cht-datalabels.pptx -------------------------------------------------------------------------------- /features/steps/test_files/cht-gridlines-props.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/cht-gridlines-props.pptx -------------------------------------------------------------------------------- /features/steps/test_files/cht-legend-props.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/cht-legend-props.pptx -------------------------------------------------------------------------------- /features/steps/test_files/cht-legend.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/cht-legend.pptx -------------------------------------------------------------------------------- /features/steps/test_files/cht-marker-props.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/cht-marker-props.pptx -------------------------------------------------------------------------------- /features/steps/test_files/cht-plot-props.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/cht-plot-props.pptx -------------------------------------------------------------------------------- /features/steps/test_files/cht-point-access.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/cht-point-access.pptx -------------------------------------------------------------------------------- /features/steps/test_files/cht-point-props.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/cht-point-props.pptx -------------------------------------------------------------------------------- /features/steps/test_files/cht-replace-data.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/cht-replace-data.pptx -------------------------------------------------------------------------------- /features/steps/test_files/cht-series.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/cht-series.pptx -------------------------------------------------------------------------------- /features/steps/test_files/cht-ticklabels-props.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/cht-ticklabels-props.pptx -------------------------------------------------------------------------------- /features/steps/test_files/dml-effect.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/dml-effect.pptx -------------------------------------------------------------------------------- /features/steps/test_files/dml-fill.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/dml-fill.pptx -------------------------------------------------------------------------------- /features/steps/test_files/dml-line.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/dml-line.pptx -------------------------------------------------------------------------------- /features/steps/test_files/ext-rels.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/ext-rels.pptx -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/[Content_Types].xml -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/_rels/.rels -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/docProps/app.xml -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/docProps/core.xml -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/docProps/thumbnail.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/docProps/thumbnail.jpeg -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/_rels/presentation.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/_rels/presentation.xml.rels -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/presProps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/presProps.xml -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/presentation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/presentation.xml -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/printerSettings/printerSettings1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/printerSettings/printerSettings1.bin -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slideLayouts/_rels/slideLayout1.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slideLayouts/_rels/slideLayout1.xml.rels -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slideLayouts/_rels/slideLayout10.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slideLayouts/_rels/slideLayout10.xml.rels -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slideLayouts/_rels/slideLayout11.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slideLayouts/_rels/slideLayout11.xml.rels -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slideLayouts/_rels/slideLayout2.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slideLayouts/_rels/slideLayout2.xml.rels -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slideLayouts/_rels/slideLayout3.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slideLayouts/_rels/slideLayout3.xml.rels -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slideLayouts/_rels/slideLayout4.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slideLayouts/_rels/slideLayout4.xml.rels -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slideLayouts/_rels/slideLayout5.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slideLayouts/_rels/slideLayout5.xml.rels -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slideLayouts/_rels/slideLayout6.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slideLayouts/_rels/slideLayout6.xml.rels -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slideLayouts/_rels/slideLayout7.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slideLayouts/_rels/slideLayout7.xml.rels -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slideLayouts/_rels/slideLayout8.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slideLayouts/_rels/slideLayout8.xml.rels -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slideLayouts/_rels/slideLayout9.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slideLayouts/_rels/slideLayout9.xml.rels -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slideLayouts/slideLayout1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slideLayouts/slideLayout1.xml -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slideLayouts/slideLayout10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slideLayouts/slideLayout10.xml -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slideLayouts/slideLayout11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slideLayouts/slideLayout11.xml -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slideLayouts/slideLayout2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slideLayouts/slideLayout2.xml -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slideLayouts/slideLayout3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slideLayouts/slideLayout3.xml -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slideLayouts/slideLayout4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slideLayouts/slideLayout4.xml -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slideLayouts/slideLayout5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slideLayouts/slideLayout5.xml -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slideLayouts/slideLayout6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slideLayouts/slideLayout6.xml -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slideLayouts/slideLayout7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slideLayouts/slideLayout7.xml -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slideLayouts/slideLayout8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slideLayouts/slideLayout8.xml -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slideLayouts/slideLayout9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slideLayouts/slideLayout9.xml -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slideMasters/_rels/slideMaster1.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slideMasters/_rels/slideMaster1.xml.rels -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slideMasters/slideMaster1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slideMasters/slideMaster1.xml -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slides/_rels/slide1.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slides/_rels/slide1.xml.rels -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/slides/slide1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/slides/slide1.xml -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/tableStyles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/tableStyles.xml -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/theme/theme1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/theme/theme1.xml -------------------------------------------------------------------------------- /features/steps/test_files/extracted-pptx/ppt/viewProps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/extracted-pptx/ppt/viewProps.xml -------------------------------------------------------------------------------- /features/steps/test_files/font-color.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/font-color.pptx -------------------------------------------------------------------------------- /features/steps/test_files/just-two-mice.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/just-two-mice.mp4 -------------------------------------------------------------------------------- /features/steps/test_files/just-two-mice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/just-two-mice.png -------------------------------------------------------------------------------- /features/steps/test_files/lyt-shapes.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/lyt-shapes.pptx -------------------------------------------------------------------------------- /features/steps/test_files/minimal.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/minimal.pptx -------------------------------------------------------------------------------- /features/steps/test_files/monty-truth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/monty-truth.png -------------------------------------------------------------------------------- /features/steps/test_files/mst-placeholders.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/mst-placeholders.pptx -------------------------------------------------------------------------------- /features/steps/test_files/mst-shapes.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/mst-shapes.pptx -------------------------------------------------------------------------------- /features/steps/test_files/mst-slide-layouts.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/mst-slide-layouts.pptx -------------------------------------------------------------------------------- /features/steps/test_files/ph-inherit-props.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/ph-inherit-props.pptx -------------------------------------------------------------------------------- /features/steps/test_files/ph-populated-placeholders.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/ph-populated-placeholders.pptx -------------------------------------------------------------------------------- /features/steps/test_files/ph-unpopulated-placeholders.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/ph-unpopulated-placeholders.pptx -------------------------------------------------------------------------------- /features/steps/test_files/pic.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/pic.emf -------------------------------------------------------------------------------- /features/steps/test_files/prs-add-slide.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/prs-add-slide.pptx -------------------------------------------------------------------------------- /features/steps/test_files/prs-notes.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/prs-notes.pptx -------------------------------------------------------------------------------- /features/steps/test_files/prs-properties.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/prs-properties.pptx -------------------------------------------------------------------------------- /features/steps/test_files/prs-slide-masters.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/prs-slide-masters.pptx -------------------------------------------------------------------------------- /features/steps/test_files/python-icon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/python-icon.jpeg -------------------------------------------------------------------------------- /features/steps/test_files/python-powered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/python-powered.png -------------------------------------------------------------------------------- /features/steps/test_files/python.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/python.bmp -------------------------------------------------------------------------------- /features/steps/test_files/shp-access-chart.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/shp-access-chart.pptx -------------------------------------------------------------------------------- /features/steps/test_files/shp-access-ole-object.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/shp-access-ole-object.pptx -------------------------------------------------------------------------------- /features/steps/test_files/shp-autoshape-adjustments.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/shp-autoshape-adjustments.pptx -------------------------------------------------------------------------------- /features/steps/test_files/shp-autoshape-props.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/shp-autoshape-props.pptx -------------------------------------------------------------------------------- /features/steps/test_files/shp-common-props.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/shp-common-props.pptx -------------------------------------------------------------------------------- /features/steps/test_files/shp-connector-props.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/shp-connector-props.pptx -------------------------------------------------------------------------------- /features/steps/test_files/shp-embedded-docx.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/shp-embedded-docx.docx -------------------------------------------------------------------------------- /features/steps/test_files/shp-embedded-pptx.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/shp-embedded-pptx.pptx -------------------------------------------------------------------------------- /features/steps/test_files/shp-embedded-xlsx.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/shp-embedded-xlsx.xlsx -------------------------------------------------------------------------------- /features/steps/test_files/shp-freeform.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/shp-freeform.pptx -------------------------------------------------------------------------------- /features/steps/test_files/shp-groupshape.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/shp-groupshape.pptx -------------------------------------------------------------------------------- /features/steps/test_files/shp-movie-props.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/shp-movie-props.pptx -------------------------------------------------------------------------------- /features/steps/test_files/shp-picture.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/shp-picture.pptx -------------------------------------------------------------------------------- /features/steps/test_files/shp-pos-and-size.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/shp-pos-and-size.pptx -------------------------------------------------------------------------------- /features/steps/test_files/shp-shapes.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/shp-shapes.pptx -------------------------------------------------------------------------------- /features/steps/test_files/sld-background.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/sld-background.pptx -------------------------------------------------------------------------------- /features/steps/test_files/sld-blank.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/sld-blank.pptx -------------------------------------------------------------------------------- /features/steps/test_files/sld-notes.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/sld-notes.pptx -------------------------------------------------------------------------------- /features/steps/test_files/sld-slide.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/sld-slide.pptx -------------------------------------------------------------------------------- /features/steps/test_files/sld-slides.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/sld-slides.pptx -------------------------------------------------------------------------------- /features/steps/test_files/sonic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/sonic.gif -------------------------------------------------------------------------------- /features/steps/test_files/tbl-cell.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/tbl-cell.pptx -------------------------------------------------------------------------------- /features/steps/test_files/test-image-jpg-mime.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/test-image-jpg-mime.pptx -------------------------------------------------------------------------------- /features/steps/test_files/test.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/test.pptx -------------------------------------------------------------------------------- /features/steps/test_files/txt-fit-text.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/txt-fit-text.pptx -------------------------------------------------------------------------------- /features/steps/test_files/txt-font-props.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/txt-font-props.pptx -------------------------------------------------------------------------------- /features/steps/test_files/txt-font-typeface.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/txt-font-typeface.pptx -------------------------------------------------------------------------------- /features/steps/test_files/txt-paragraph-spacing.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/txt-paragraph-spacing.pptx -------------------------------------------------------------------------------- /features/steps/test_files/txt-text-frame.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/txt-text-frame.pptx -------------------------------------------------------------------------------- /features/steps/test_files/txt-text.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/test_files/txt-text.pptx -------------------------------------------------------------------------------- /features/steps/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/text.py -------------------------------------------------------------------------------- /features/steps/text_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/steps/text_frame.py -------------------------------------------------------------------------------- /features/tbl-cell.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/tbl-cell.feature -------------------------------------------------------------------------------- /features/tbl-column.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/tbl-column.feature -------------------------------------------------------------------------------- /features/tbl-table.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/tbl-table.feature -------------------------------------------------------------------------------- /features/txt-fit-text.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/txt-fit-text.feature -------------------------------------------------------------------------------- /features/txt-font-color.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/txt-font-color.feature -------------------------------------------------------------------------------- /features/txt-font-props.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/txt-font-props.feature -------------------------------------------------------------------------------- /features/txt-paragraph.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/txt-paragraph.feature -------------------------------------------------------------------------------- /features/txt-text.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/txt-text.feature -------------------------------------------------------------------------------- /features/txt-textframe.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/features/txt-textframe.feature -------------------------------------------------------------------------------- /lab/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/README.txt -------------------------------------------------------------------------------- /lab/cust-elm-classes/gen_oxml_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/cust-elm-classes/gen_oxml_classes.py -------------------------------------------------------------------------------- /lab/cust-elm-classes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/cust-elm-classes/main.py -------------------------------------------------------------------------------- /lab/parse_xsd/objectify_lab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/objectify_lab.py -------------------------------------------------------------------------------- /lab/parse_xsd/parse_xsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/parse_xsd.py -------------------------------------------------------------------------------- /lab/parse_xsd/slide1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/slide1.xml -------------------------------------------------------------------------------- /lab/parse_xsd/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/validate.py -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/dml-chart.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/dml-chart.xsd -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/dml-chartDrawing.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/dml-chartDrawing.xsd -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/dml-diagram.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/dml-diagram.xsd -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/dml-lockedCanvas.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/dml-lockedCanvas.xsd -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/dml-main.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/dml-main.xsd -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/dml-picture.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/dml-picture.xsd -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/dml-spreadsheetDrawing.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/dml-spreadsheetDrawing.xsd -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/dml-wordprocessingDrawing.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/dml-wordprocessingDrawing.xsd -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/pml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/pml.xsd -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/shared-additionalCharacteristics.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/shared-additionalCharacteristics.xsd -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/shared-bibliography.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/shared-bibliography.xsd -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/shared-commonSimpleTypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/shared-commonSimpleTypes.xsd -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/shared-customXmlDataProperties.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/shared-customXmlDataProperties.xsd -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/shared-customXmlSchemaProperties.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/shared-customXmlSchemaProperties.xsd -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/shared-documentPropertiesCustom.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/shared-documentPropertiesCustom.xsd -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/shared-documentPropertiesExtended.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/shared-documentPropertiesExtended.xsd -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/shared-documentPropertiesVariantTypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/shared-documentPropertiesVariantTypes.xsd -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/shared-math.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/shared-math.xsd -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/shared-relationshipReference.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/shared-relationshipReference.xsd -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/sml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/sml.xsd -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/vml-main.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/vml-main.xsd -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/vml-officeDrawing.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/vml-officeDrawing.xsd -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/vml-presentationDrawing.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/vml-presentationDrawing.xsd -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/vml-spreadsheetDrawing.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/vml-spreadsheetDrawing.xsd -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/vml-wordprocessingDrawing.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/vml-wordprocessingDrawing.xsd -------------------------------------------------------------------------------- /lab/parse_xsd/xsd/wml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/lab/parse_xsd/xsd/wml.xsd -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | -r requirements-test.txt 2 | build 3 | ruff 4 | setuptools>=61.0.0 5 | twine 6 | -------------------------------------------------------------------------------- /requirements-docs.txt: -------------------------------------------------------------------------------- 1 | Sphinx==1.8.6 2 | Jinja2==2.11.3 3 | MarkupSafe==0.23 4 | alabaster<0.7.14 5 | -e . 6 | -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/requirements.txt -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-1/ISO-IEC-29500-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-1/ISO-IEC-29500-1.pdf -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-1/schemas/dml-geometries/OfficeOpenXML-DrawingMLGeometries/presetShapeDefinitions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-1/schemas/dml-geometries/OfficeOpenXML-DrawingMLGeometries/presetShapeDefinitions.xml -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-1/schemas/dml-geometries/OfficeOpenXML-DrawingMLGeometries/presetTextWarpDefinitions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-1/schemas/dml-geometries/OfficeOpenXML-DrawingMLGeometries/presetTextWarpDefinitions.xml -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-1/schemas/xsd/dml-chart.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-1/schemas/xsd/dml-chart.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-1/schemas/xsd/dml-chartDrawing.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-1/schemas/xsd/dml-chartDrawing.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-1/schemas/xsd/dml-diagram.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-1/schemas/xsd/dml-diagram.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-1/schemas/xsd/dml-lockedCanvas.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-1/schemas/xsd/dml-lockedCanvas.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-1/schemas/xsd/dml-main.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-1/schemas/xsd/dml-main.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-1/schemas/xsd/dml-picture.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-1/schemas/xsd/dml-picture.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-1/schemas/xsd/dml-spreadsheetDrawing.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-1/schemas/xsd/dml-spreadsheetDrawing.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-1/schemas/xsd/dml-wordprocessingDrawing.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-1/schemas/xsd/dml-wordprocessingDrawing.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-1/schemas/xsd/pml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-1/schemas/xsd/pml.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-1/schemas/xsd/shared-additionalCharacteristics.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-1/schemas/xsd/shared-additionalCharacteristics.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-1/schemas/xsd/shared-bibliography.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-1/schemas/xsd/shared-bibliography.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-1/schemas/xsd/shared-commonSimpleTypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-1/schemas/xsd/shared-commonSimpleTypes.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-1/schemas/xsd/shared-customXmlDataProperties.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-1/schemas/xsd/shared-customXmlDataProperties.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-1/schemas/xsd/shared-customXmlSchemaProperties.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-1/schemas/xsd/shared-customXmlSchemaProperties.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-1/schemas/xsd/shared-documentPropertiesCustom.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-1/schemas/xsd/shared-documentPropertiesCustom.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-1/schemas/xsd/shared-documentPropertiesExtended.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-1/schemas/xsd/shared-documentPropertiesExtended.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-1/schemas/xsd/shared-documentPropertiesVariantTypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-1/schemas/xsd/shared-documentPropertiesVariantTypes.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-1/schemas/xsd/shared-math.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-1/schemas/xsd/shared-math.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-1/schemas/xsd/shared-relationshipReference.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-1/schemas/xsd/shared-relationshipReference.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-1/schemas/xsd/sml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-1/schemas/xsd/sml.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-1/schemas/xsd/wml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-1/schemas/xsd/wml.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-2/ISO-IEC-29500-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-2/ISO-IEC-29500-2.pdf -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-2/opc-xsd/opc-contentTypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-2/opc-xsd/opc-contentTypes.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-2/opc-xsd/opc-coreProperties.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-2/opc-xsd/opc-coreProperties.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-2/opc-xsd/opc-digSig.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-2/opc-xsd/opc-digSig.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-2/opc-xsd/opc-relationships.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-2/opc-xsd/opc-relationships.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-3/ISO-IEC-29500-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-3/ISO-IEC-29500-3.pdf -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/ISO-IEC-29500-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/ISO-IEC-29500-4.pdf -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/dml-chart.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/dml-chart.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/dml-chartDrawing.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/dml-chartDrawing.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/dml-diagram.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/dml-diagram.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/dml-lockedCanvas.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/dml-lockedCanvas.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/dml-main.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/dml-main.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/dml-picture.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/dml-picture.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/dml-spreadsheetDrawing.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/dml-spreadsheetDrawing.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/dml-wordprocessingDrawing.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/dml-wordprocessingDrawing.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/pml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/pml.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/shared-additionalCharacteristics.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/shared-additionalCharacteristics.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/shared-bibliography.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/shared-bibliography.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/shared-commonSimpleTypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/shared-commonSimpleTypes.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/shared-customXmlDataProperties.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/shared-customXmlDataProperties.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/shared-customXmlSchemaProperties.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/shared-customXmlSchemaProperties.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/shared-documentPropertiesCustom.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/shared-documentPropertiesCustom.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/shared-documentPropertiesExtended.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/shared-documentPropertiesExtended.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/shared-documentPropertiesVariantTypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/shared-documentPropertiesVariantTypes.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/shared-math.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/shared-math.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/shared-relationshipReference.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/shared-relationshipReference.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/sml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/sml.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/vml-main.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/vml-main.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/vml-officeDrawing.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/vml-officeDrawing.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/vml-presentationDrawing.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/vml-presentationDrawing.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/vml-spreadsheetDrawing.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/vml-spreadsheetDrawing.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/vml-wordprocessingDrawing.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/vml-wordprocessingDrawing.xsd -------------------------------------------------------------------------------- /spec/ISO-IEC-29500-4/xsd/wml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/ISO-IEC-29500-4/xsd/wml.xsd -------------------------------------------------------------------------------- /spec/gen_spec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/gen_spec/Makefile -------------------------------------------------------------------------------- /spec/gen_spec/enum/MsoAutoShapeType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/gen_spec/enum/MsoAutoShapeType.xml -------------------------------------------------------------------------------- /spec/gen_spec/gen_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/gen_spec/gen_spec.py -------------------------------------------------------------------------------- /spec/gen_spec/sql/dump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/gen_spec/sql/dump.sql -------------------------------------------------------------------------------- /spec/gen_spec/src_data/enums/MsoAutoShapeType/MsoAutoShapeType.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/gen_spec/src_data/enums/MsoAutoShapeType/MsoAutoShapeType.txt -------------------------------------------------------------------------------- /spec/gen_spec/src_data/enums/MsoAutoShapeType/ST_ShapeType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/gen_spec/src_data/enums/MsoAutoShapeType/ST_ShapeType.xml -------------------------------------------------------------------------------- /spec/gen_spec/src_data/enums/MsoAutoShapeType/mapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/gen_spec/src_data/enums/MsoAutoShapeType/mapping.txt -------------------------------------------------------------------------------- /spec/gen_spec/src_data/msoAutoShapeType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/gen_spec/src_data/msoAutoShapeType.py -------------------------------------------------------------------------------- /spec/gen_spec/src_data/scratch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/spec/gen_spec/src_data/scratch.py -------------------------------------------------------------------------------- /src/pptx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/__init__.py -------------------------------------------------------------------------------- /src/pptx/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/action.py -------------------------------------------------------------------------------- /src/pptx/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/api.py -------------------------------------------------------------------------------- /src/pptx/chart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pptx/chart/axis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/chart/axis.py -------------------------------------------------------------------------------- /src/pptx/chart/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/chart/category.py -------------------------------------------------------------------------------- /src/pptx/chart/chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/chart/chart.py -------------------------------------------------------------------------------- /src/pptx/chart/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/chart/data.py -------------------------------------------------------------------------------- /src/pptx/chart/datalabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/chart/datalabel.py -------------------------------------------------------------------------------- /src/pptx/chart/legend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/chart/legend.py -------------------------------------------------------------------------------- /src/pptx/chart/marker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/chart/marker.py -------------------------------------------------------------------------------- /src/pptx/chart/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/chart/plot.py -------------------------------------------------------------------------------- /src/pptx/chart/point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/chart/point.py -------------------------------------------------------------------------------- /src/pptx/chart/series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/chart/series.py -------------------------------------------------------------------------------- /src/pptx/chart/xlsx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/chart/xlsx.py -------------------------------------------------------------------------------- /src/pptx/chart/xmlwriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/chart/xmlwriter.py -------------------------------------------------------------------------------- /src/pptx/dml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pptx/dml/chtfmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/dml/chtfmt.py -------------------------------------------------------------------------------- /src/pptx/dml/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/dml/color.py -------------------------------------------------------------------------------- /src/pptx/dml/effect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/dml/effect.py -------------------------------------------------------------------------------- /src/pptx/dml/fill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/dml/fill.py -------------------------------------------------------------------------------- /src/pptx/dml/line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/dml/line.py -------------------------------------------------------------------------------- /src/pptx/enum/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pptx/enum/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/enum/action.py -------------------------------------------------------------------------------- /src/pptx/enum/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/enum/base.py -------------------------------------------------------------------------------- /src/pptx/enum/chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/enum/chart.py -------------------------------------------------------------------------------- /src/pptx/enum/dml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/enum/dml.py -------------------------------------------------------------------------------- /src/pptx/enum/lang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/enum/lang.py -------------------------------------------------------------------------------- /src/pptx/enum/shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/enum/shapes.py -------------------------------------------------------------------------------- /src/pptx/enum/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/enum/text.py -------------------------------------------------------------------------------- /src/pptx/exc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/exc.py -------------------------------------------------------------------------------- /src/pptx/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/media.py -------------------------------------------------------------------------------- /src/pptx/opc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pptx/opc/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/opc/constants.py -------------------------------------------------------------------------------- /src/pptx/opc/oxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/opc/oxml.py -------------------------------------------------------------------------------- /src/pptx/opc/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/opc/package.py -------------------------------------------------------------------------------- /src/pptx/opc/packuri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/opc/packuri.py -------------------------------------------------------------------------------- /src/pptx/opc/serialized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/opc/serialized.py -------------------------------------------------------------------------------- /src/pptx/opc/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/opc/shared.py -------------------------------------------------------------------------------- /src/pptx/opc/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/opc/spec.py -------------------------------------------------------------------------------- /src/pptx/oxml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/__init__.py -------------------------------------------------------------------------------- /src/pptx/oxml/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/action.py -------------------------------------------------------------------------------- /src/pptx/oxml/chart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pptx/oxml/chart/axis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/chart/axis.py -------------------------------------------------------------------------------- /src/pptx/oxml/chart/chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/chart/chart.py -------------------------------------------------------------------------------- /src/pptx/oxml/chart/datalabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/chart/datalabel.py -------------------------------------------------------------------------------- /src/pptx/oxml/chart/legend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/chart/legend.py -------------------------------------------------------------------------------- /src/pptx/oxml/chart/marker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/chart/marker.py -------------------------------------------------------------------------------- /src/pptx/oxml/chart/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/chart/plot.py -------------------------------------------------------------------------------- /src/pptx/oxml/chart/series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/chart/series.py -------------------------------------------------------------------------------- /src/pptx/oxml/chart/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/chart/shared.py -------------------------------------------------------------------------------- /src/pptx/oxml/coreprops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/coreprops.py -------------------------------------------------------------------------------- /src/pptx/oxml/dml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pptx/oxml/dml/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/dml/color.py -------------------------------------------------------------------------------- /src/pptx/oxml/dml/fill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/dml/fill.py -------------------------------------------------------------------------------- /src/pptx/oxml/dml/line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/dml/line.py -------------------------------------------------------------------------------- /src/pptx/oxml/ns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/ns.py -------------------------------------------------------------------------------- /src/pptx/oxml/presentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/presentation.py -------------------------------------------------------------------------------- /src/pptx/oxml/shapes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/shapes/__init__.py -------------------------------------------------------------------------------- /src/pptx/oxml/shapes/autoshape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/shapes/autoshape.py -------------------------------------------------------------------------------- /src/pptx/oxml/shapes/connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/shapes/connector.py -------------------------------------------------------------------------------- /src/pptx/oxml/shapes/graphfrm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/shapes/graphfrm.py -------------------------------------------------------------------------------- /src/pptx/oxml/shapes/groupshape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/shapes/groupshape.py -------------------------------------------------------------------------------- /src/pptx/oxml/shapes/picture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/shapes/picture.py -------------------------------------------------------------------------------- /src/pptx/oxml/shapes/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/shapes/shared.py -------------------------------------------------------------------------------- /src/pptx/oxml/simpletypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/simpletypes.py -------------------------------------------------------------------------------- /src/pptx/oxml/slide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/slide.py -------------------------------------------------------------------------------- /src/pptx/oxml/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/table.py -------------------------------------------------------------------------------- /src/pptx/oxml/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/text.py -------------------------------------------------------------------------------- /src/pptx/oxml/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/theme.py -------------------------------------------------------------------------------- /src/pptx/oxml/xmlchemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/oxml/xmlchemy.py -------------------------------------------------------------------------------- /src/pptx/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/package.py -------------------------------------------------------------------------------- /src/pptx/parts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pptx/parts/chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/parts/chart.py -------------------------------------------------------------------------------- /src/pptx/parts/coreprops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/parts/coreprops.py -------------------------------------------------------------------------------- /src/pptx/parts/embeddedpackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/parts/embeddedpackage.py -------------------------------------------------------------------------------- /src/pptx/parts/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/parts/image.py -------------------------------------------------------------------------------- /src/pptx/parts/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/parts/media.py -------------------------------------------------------------------------------- /src/pptx/parts/presentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/parts/presentation.py -------------------------------------------------------------------------------- /src/pptx/parts/slide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/parts/slide.py -------------------------------------------------------------------------------- /src/pptx/presentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/presentation.py -------------------------------------------------------------------------------- /src/pptx/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pptx/shapes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/shapes/__init__.py -------------------------------------------------------------------------------- /src/pptx/shapes/autoshape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/shapes/autoshape.py -------------------------------------------------------------------------------- /src/pptx/shapes/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/shapes/base.py -------------------------------------------------------------------------------- /src/pptx/shapes/connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/shapes/connector.py -------------------------------------------------------------------------------- /src/pptx/shapes/freeform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/shapes/freeform.py -------------------------------------------------------------------------------- /src/pptx/shapes/graphfrm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/shapes/graphfrm.py -------------------------------------------------------------------------------- /src/pptx/shapes/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/shapes/group.py -------------------------------------------------------------------------------- /src/pptx/shapes/picture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/shapes/picture.py -------------------------------------------------------------------------------- /src/pptx/shapes/placeholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/shapes/placeholder.py -------------------------------------------------------------------------------- /src/pptx/shapes/shapetree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/shapes/shapetree.py -------------------------------------------------------------------------------- /src/pptx/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/shared.py -------------------------------------------------------------------------------- /src/pptx/slide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/slide.py -------------------------------------------------------------------------------- /src/pptx/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/spec.py -------------------------------------------------------------------------------- /src/pptx/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/table.py -------------------------------------------------------------------------------- /src/pptx/templates/default.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/templates/default.pptx -------------------------------------------------------------------------------- /src/pptx/templates/docx-icon.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/templates/docx-icon.emf -------------------------------------------------------------------------------- /src/pptx/templates/generic-icon.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/templates/generic-icon.emf -------------------------------------------------------------------------------- /src/pptx/templates/notes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/templates/notes.xml -------------------------------------------------------------------------------- /src/pptx/templates/notesMaster.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/templates/notesMaster.xml -------------------------------------------------------------------------------- /src/pptx/templates/pptx-icon.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/templates/pptx-icon.emf -------------------------------------------------------------------------------- /src/pptx/templates/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/templates/theme.xml -------------------------------------------------------------------------------- /src/pptx/templates/xlsx-icon.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/templates/xlsx-icon.emf -------------------------------------------------------------------------------- /src/pptx/text/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pptx/text/fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/text/fonts.py -------------------------------------------------------------------------------- /src/pptx/text/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/text/layout.py -------------------------------------------------------------------------------- /src/pptx/text/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/text/text.py -------------------------------------------------------------------------------- /src/pptx/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/types.py -------------------------------------------------------------------------------- /src/pptx/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/src/pptx/util.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/chart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/chart/test_axis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/chart/test_axis.py -------------------------------------------------------------------------------- /tests/chart/test_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/chart/test_category.py -------------------------------------------------------------------------------- /tests/chart/test_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/chart/test_chart.py -------------------------------------------------------------------------------- /tests/chart/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/chart/test_data.py -------------------------------------------------------------------------------- /tests/chart/test_datalabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/chart/test_datalabel.py -------------------------------------------------------------------------------- /tests/chart/test_legend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/chart/test_legend.py -------------------------------------------------------------------------------- /tests/chart/test_marker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/chart/test_marker.py -------------------------------------------------------------------------------- /tests/chart/test_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/chart/test_plot.py -------------------------------------------------------------------------------- /tests/chart/test_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/chart/test_point.py -------------------------------------------------------------------------------- /tests/chart/test_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/chart/test_series.py -------------------------------------------------------------------------------- /tests/chart/test_xlsx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/chart/test_xlsx.py -------------------------------------------------------------------------------- /tests/chart/test_xmlwriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/chart/test_xmlwriter.py -------------------------------------------------------------------------------- /tests/dml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dml/test_chtfmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/dml/test_chtfmt.py -------------------------------------------------------------------------------- /tests/dml/test_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/dml/test_color.py -------------------------------------------------------------------------------- /tests/dml/test_effect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/dml/test_effect.py -------------------------------------------------------------------------------- /tests/dml/test_fill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/dml/test_fill.py -------------------------------------------------------------------------------- /tests/dml/test_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/dml/test_line.py -------------------------------------------------------------------------------- /tests/enum/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/enum/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/enum/test_base.py -------------------------------------------------------------------------------- /tests/enum/test_shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/enum/test_shapes.py -------------------------------------------------------------------------------- /tests/opc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/opc/test_oxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/opc/test_oxml.py -------------------------------------------------------------------------------- /tests/opc/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/opc/test_package.py -------------------------------------------------------------------------------- /tests/opc/test_packuri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/opc/test_packuri.py -------------------------------------------------------------------------------- /tests/opc/test_serialized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/opc/test_serialized.py -------------------------------------------------------------------------------- /tests/oxml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/oxml/shapes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/oxml/shapes/test_autoshape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/oxml/shapes/test_autoshape.py -------------------------------------------------------------------------------- /tests/oxml/shapes/test_graphfrm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/oxml/shapes/test_graphfrm.py -------------------------------------------------------------------------------- /tests/oxml/shapes/test_groupshape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/oxml/shapes/test_groupshape.py -------------------------------------------------------------------------------- /tests/oxml/shapes/test_picture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/oxml/shapes/test_picture.py -------------------------------------------------------------------------------- /tests/oxml/test___init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/oxml/test___init__.py -------------------------------------------------------------------------------- /tests/oxml/test_dml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/oxml/test_dml.py -------------------------------------------------------------------------------- /tests/oxml/test_ns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/oxml/test_ns.py -------------------------------------------------------------------------------- /tests/oxml/test_presentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/oxml/test_presentation.py -------------------------------------------------------------------------------- /tests/oxml/test_simpletypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/oxml/test_simpletypes.py -------------------------------------------------------------------------------- /tests/oxml/test_slide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/oxml/test_slide.py -------------------------------------------------------------------------------- /tests/oxml/test_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/oxml/test_table.py -------------------------------------------------------------------------------- /tests/oxml/test_theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/oxml/test_theme.py -------------------------------------------------------------------------------- /tests/oxml/test_xmlchemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/oxml/test_xmlchemy.py -------------------------------------------------------------------------------- /tests/oxml/unitdata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/oxml/unitdata/dml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/oxml/unitdata/dml.py -------------------------------------------------------------------------------- /tests/oxml/unitdata/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/oxml/unitdata/shape.py -------------------------------------------------------------------------------- /tests/oxml/unitdata/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/oxml/unitdata/text.py -------------------------------------------------------------------------------- /tests/parts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/parts/test_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/parts/test_chart.py -------------------------------------------------------------------------------- /tests/parts/test_coreprops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/parts/test_coreprops.py -------------------------------------------------------------------------------- /tests/parts/test_embeddedpackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/parts/test_embeddedpackage.py -------------------------------------------------------------------------------- /tests/parts/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/parts/test_image.py -------------------------------------------------------------------------------- /tests/parts/test_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/parts/test_media.py -------------------------------------------------------------------------------- /tests/parts/test_presentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/parts/test_presentation.py -------------------------------------------------------------------------------- /tests/parts/test_slide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/parts/test_slide.py -------------------------------------------------------------------------------- /tests/shapes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/shapes/test_autoshape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/shapes/test_autoshape.py -------------------------------------------------------------------------------- /tests/shapes/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/shapes/test_base.py -------------------------------------------------------------------------------- /tests/shapes/test_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/shapes/test_connector.py -------------------------------------------------------------------------------- /tests/shapes/test_freeform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/shapes/test_freeform.py -------------------------------------------------------------------------------- /tests/shapes/test_graphfrm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/shapes/test_graphfrm.py -------------------------------------------------------------------------------- /tests/shapes/test_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/shapes/test_group.py -------------------------------------------------------------------------------- /tests/shapes/test_picture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/shapes/test_picture.py -------------------------------------------------------------------------------- /tests/shapes/test_placeholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/shapes/test_placeholder.py -------------------------------------------------------------------------------- /tests/shapes/test_shapetree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/shapes/test_shapetree.py -------------------------------------------------------------------------------- /tests/test_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_action.py -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_files/calibriz.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/calibriz.ttf -------------------------------------------------------------------------------- /tests/test_files/cdw-logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/cdw-logo.eps -------------------------------------------------------------------------------- /tests/test_files/dummy.mp4: -------------------------------------------------------------------------------- 1 | bytestream of video would appear here ... 2 | -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/[Content_Types].xml -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/_rels/.rels -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/docProps/app.xml -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/docProps/core.xml -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/docProps/thumbnail.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/docProps/thumbnail.jpeg -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/_rels/presentation.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/_rels/presentation.xml.rels -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/presProps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/presProps.xml -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/presentation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/presentation.xml -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/printerSettings/printerSettings1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/printerSettings/printerSettings1.bin -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slideLayouts/_rels/slideLayout1.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slideLayouts/_rels/slideLayout1.xml.rels -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slideLayouts/_rels/slideLayout10.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slideLayouts/_rels/slideLayout10.xml.rels -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slideLayouts/_rels/slideLayout11.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slideLayouts/_rels/slideLayout11.xml.rels -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slideLayouts/_rels/slideLayout2.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slideLayouts/_rels/slideLayout2.xml.rels -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slideLayouts/_rels/slideLayout3.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slideLayouts/_rels/slideLayout3.xml.rels -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slideLayouts/_rels/slideLayout4.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slideLayouts/_rels/slideLayout4.xml.rels -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slideLayouts/_rels/slideLayout5.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slideLayouts/_rels/slideLayout5.xml.rels -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slideLayouts/_rels/slideLayout6.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slideLayouts/_rels/slideLayout6.xml.rels -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slideLayouts/_rels/slideLayout7.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slideLayouts/_rels/slideLayout7.xml.rels -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slideLayouts/_rels/slideLayout8.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slideLayouts/_rels/slideLayout8.xml.rels -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slideLayouts/_rels/slideLayout9.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slideLayouts/_rels/slideLayout9.xml.rels -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slideLayouts/slideLayout1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slideLayouts/slideLayout1.xml -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slideLayouts/slideLayout10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slideLayouts/slideLayout10.xml -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slideLayouts/slideLayout11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slideLayouts/slideLayout11.xml -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slideLayouts/slideLayout2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slideLayouts/slideLayout2.xml -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slideLayouts/slideLayout3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slideLayouts/slideLayout3.xml -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slideLayouts/slideLayout4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slideLayouts/slideLayout4.xml -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slideLayouts/slideLayout5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slideLayouts/slideLayout5.xml -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slideLayouts/slideLayout6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slideLayouts/slideLayout6.xml -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slideLayouts/slideLayout7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slideLayouts/slideLayout7.xml -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slideLayouts/slideLayout8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slideLayouts/slideLayout8.xml -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slideLayouts/slideLayout9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slideLayouts/slideLayout9.xml -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slideMasters/_rels/slideMaster1.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slideMasters/_rels/slideMaster1.xml.rels -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slideMasters/slideMaster1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slideMasters/slideMaster1.xml -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slides/_rels/slide1.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slides/_rels/slide1.xml.rels -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/slides/slide1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/slides/slide1.xml -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/tableStyles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/tableStyles.xml -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/theme/theme1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/theme/theme1.xml -------------------------------------------------------------------------------- /tests/test_files/expanded_pptx/ppt/viewProps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/expanded_pptx/ppt/viewProps.xml -------------------------------------------------------------------------------- /tests/test_files/minimal.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/minimal.pptx -------------------------------------------------------------------------------- /tests/test_files/minimal_slide.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/minimal_slide.xml -------------------------------------------------------------------------------- /tests/test_files/missing_rels_item.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/missing_rels_item.pptx -------------------------------------------------------------------------------- /tests/test_files/monty-truth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/monty-truth.png -------------------------------------------------------------------------------- /tests/test_files/no-core-props.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/no-core-props.pptx -------------------------------------------------------------------------------- /tests/test_files/no-slides.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/no-slides.pptx -------------------------------------------------------------------------------- /tests/test_files/presentation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/presentation.xml -------------------------------------------------------------------------------- /tests/test_files/python-icon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/python-icon.jpeg -------------------------------------------------------------------------------- /tests/test_files/python-powered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/python-powered.png -------------------------------------------------------------------------------- /tests/test_files/python.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/python.bmp -------------------------------------------------------------------------------- /tests/test_files/slideLayout1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/slideLayout1.xml -------------------------------------------------------------------------------- /tests/test_files/snippets/2x2-area-date.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x2-area-date.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x2-area-float.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x2-area-float.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x2-area-stacked-100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x2-area-stacked-100.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x2-area-stacked.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x2-area-stacked.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x2-area.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x2-area.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x2-bar-clustered-date.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x2-bar-clustered-date.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x2-bar-clustered-float.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x2-bar-clustered-float.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x2-bar-clustered.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x2-bar-clustered.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x2-bar-stacked-100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x2-bar-stacked-100.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x2-bar-stacked.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x2-bar-stacked.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x2-column-clustered.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x2-column-clustered.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x2-column-stacked-100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x2-column-stacked-100.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x2-column-stacked.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x2-column-stacked.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x2-line-date.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x2-line-date.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x2-line-float.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x2-line-float.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x2-line-markers-stacked-100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x2-line-markers-stacked-100.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x2-line-markers-stacked.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x2-line-markers-stacked.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x2-line-markers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x2-line-markers.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x2-line-stacked-100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x2-line-stacked-100.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x2-line-stacked.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x2-line-stacked.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x2-line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x2-line.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x3-bubble-3d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x3-bubble-3d.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x3-bubble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x3-bubble.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x3-xy-lines-no-markers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x3-xy-lines-no-markers.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x3-xy-lines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x3-xy-lines.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x3-xy-smooth-no-markers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x3-xy-smooth-no-markers.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x3-xy-smooth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x3-xy-smooth.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x3-xy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x3-xy.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/2x5-radar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/2x5-radar.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/3x1-pie-exploded.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/3x1-pie-exploded.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/3x1-pie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/3x1-pie.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/3x2-doughnut-exploded.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/3x2-doughnut-exploded.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/3x2-doughnut.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/3x2-doughnut.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/4x2-multi-cat-bar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/4x2-multi-cat-bar.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/adjust-ser-count.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/adjust-ser-count.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/cat-labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/cat-labels.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/content-types-xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/content-types-xml.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/default-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/default-notes.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/default-notesMaster.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/default-notesMaster.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/default-theme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/default-theme.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/freeform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/freeform.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/package-rels-xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/package-rels-xml.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/placeholders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/placeholders.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/presentation-rels-xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/presentation-rels-xml.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/relationships.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/relationships.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/rels-load-from-xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/rels-load-from-xml.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/rewrite-ser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/rewrite-ser.txt -------------------------------------------------------------------------------- /tests/test_files/snippets/timing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/snippets/timing.txt -------------------------------------------------------------------------------- /tests/test_files/test.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/test.pptx -------------------------------------------------------------------------------- /tests/test_files/test_slides.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_files/test_slides.pptx -------------------------------------------------------------------------------- /tests/test_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_media.py -------------------------------------------------------------------------------- /tests/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_package.py -------------------------------------------------------------------------------- /tests/test_presentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_presentation.py -------------------------------------------------------------------------------- /tests/test_shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_shared.py -------------------------------------------------------------------------------- /tests/test_slide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_slide.py -------------------------------------------------------------------------------- /tests/test_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_table.py -------------------------------------------------------------------------------- /tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/test_util.py -------------------------------------------------------------------------------- /tests/text/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/text/test_fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/text/test_fonts.py -------------------------------------------------------------------------------- /tests/text/test_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/text/test_layout.py -------------------------------------------------------------------------------- /tests/text/test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/text/test_text.py -------------------------------------------------------------------------------- /tests/unitdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/unitdata.py -------------------------------------------------------------------------------- /tests/unitutil/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/unitutil/__init__.py -------------------------------------------------------------------------------- /tests/unitutil/cxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/unitutil/cxml.py -------------------------------------------------------------------------------- /tests/unitutil/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/unitutil/file.py -------------------------------------------------------------------------------- /tests/unitutil/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tests/unitutil/mock.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/tox.ini -------------------------------------------------------------------------------- /typings/behave/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/typings/behave/__init__.pyi -------------------------------------------------------------------------------- /typings/behave/runner.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/typings/behave/runner.pyi -------------------------------------------------------------------------------- /typings/lxml/_types.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/typings/lxml/_types.pyi -------------------------------------------------------------------------------- /typings/lxml/etree/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/typings/lxml/etree/__init__.pyi -------------------------------------------------------------------------------- /typings/lxml/etree/_classlookup.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/typings/lxml/etree/_classlookup.pyi -------------------------------------------------------------------------------- /typings/lxml/etree/_cleanup.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/typings/lxml/etree/_cleanup.pyi -------------------------------------------------------------------------------- /typings/lxml/etree/_element.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/typings/lxml/etree/_element.pyi -------------------------------------------------------------------------------- /typings/lxml/etree/_module_func.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/typings/lxml/etree/_module_func.pyi -------------------------------------------------------------------------------- /typings/lxml/etree/_module_misc.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/typings/lxml/etree/_module_misc.pyi -------------------------------------------------------------------------------- /typings/lxml/etree/_nsclasses.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/typings/lxml/etree/_nsclasses.pyi -------------------------------------------------------------------------------- /typings/lxml/etree/_parser.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scanny/python-pptx/HEAD/typings/lxml/etree/_parser.pyi --------------------------------------------------------------------------------