Name | pptxlib JSON |
Version |
0.2.6
JSON |
| download |
home_page | None |
Summary | Automate Microsoft PowerPoint operations. Create, modify, and manage PowerPoint presentations programmatically with a simple and intuitive interface |
upload_time | 2025-08-10 22:20:38 |
maintainer | None |
docs_url | None |
author | daizutabi |
requires_python | >=3.11 |
license | MIT License Copyright (c) 2024 Daizu Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
keywords |
automation
com
microsoft
office
powerpoint
pptx
presentation
win32com
windows
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# pptxlib
[![PyPI Version][pypi-v-image]][pypi-v-link]
[![Python Version][python-v-image]][python-v-link]
[![Build Status][GHAction-image]][GHAction-link]
[![Coverage Status][codecov-image]][codecov-link]
A Python library for automating Microsoft PowerPoint operations.
## Overview
pptxlib is a high-level Python library that provides a simple and intuitive interface
for automating Microsoft PowerPoint operations. It allows you to create, modify, and
manage PowerPoint presentations programmatically.
## Features
- Create and manage PowerPoint presentations
- Add and modify slides
- Work with shapes, tables, and charts
- Customize text, colors, and formatting
- Automate presentation generation
- Support for Windows platforms
## Quick Start
```python
from pptxlib import App
app = App()
# Optional: keep the window minimized (PowerPoint doesn't allow hiding the UI)
app.minimize()
# Or create a presentation without opening a window
prs = app.presentations.add(with_window=False)
slide = prs.slides.add()
shape = slide.shapes.add("Rectangle", 100, 100, 200, 100)
```
## Installation
```bash
pip install pptxlib
```
Optional extras:
- For image support (Pillow):
```bash
pip install "pptxlib[images]"
```
- For Matplotlib figure export:
```bash
pip install "pptxlib[figures]"
```
## Requirements
- Windows operating system
- Microsoft PowerPoint
- Python 3.11 or higher
<!-- Badges -->
[pypi-v-image]: https://img.shields.io/pypi/v/pptxlib.svg
[pypi-v-link]: https://pypi.org/project/pptxlib/
[python-v-image]: https://img.shields.io/pypi/pyversions/pptxlib.svg
[python-v-link]: https://pypi.org/project/pptxlib
[GHAction-image]: https://github.com/daizutabi/pptxlib/actions/workflows/ci.yaml/badge.svg?branch=main&event=push
[GHAction-link]: https://github.com/daizutabi/pptxlib/actions?query=event%3Apush+branch%3Amain
[codecov-image]: https://codecov.io/github/daizutabi/pptxlib/coverage.svg?branch=main
[codecov-link]: https://codecov.io/github/daizutabi/pptxlib?branch=main
Raw data
{
"_id": null,
"home_page": null,
"name": "pptxlib",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.11",
"maintainer_email": null,
"keywords": "automation, com, microsoft, office, powerpoint, pptx, presentation, win32com, windows",
"author": "daizutabi",
"author_email": "daizutabi <daizutabi@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/14/bd/987df06ed8f006a6723d765d36d33ad321d00f891d3f726f8a3d7d3f2d27/pptxlib-0.2.6.tar.gz",
"platform": null,
"description": "# pptxlib\r\n\r\n[![PyPI Version][pypi-v-image]][pypi-v-link]\r\n[![Python Version][python-v-image]][python-v-link]\r\n[![Build Status][GHAction-image]][GHAction-link]\r\n[![Coverage Status][codecov-image]][codecov-link]\r\n\r\nA Python library for automating Microsoft PowerPoint operations.\r\n\r\n## Overview\r\n\r\npptxlib is a high-level Python library that provides a simple and intuitive interface\r\nfor automating Microsoft PowerPoint operations. It allows you to create, modify, and\r\nmanage PowerPoint presentations programmatically.\r\n\r\n## Features\r\n\r\n- Create and manage PowerPoint presentations\r\n- Add and modify slides\r\n- Work with shapes, tables, and charts\r\n- Customize text, colors, and formatting\r\n- Automate presentation generation\r\n- Support for Windows platforms\r\n\r\n## Quick Start\r\n\r\n```python\r\nfrom pptxlib import App\r\n\r\napp = App()\r\n# Optional: keep the window minimized (PowerPoint doesn't allow hiding the UI)\r\napp.minimize()\r\n# Or create a presentation without opening a window\r\nprs = app.presentations.add(with_window=False)\r\nslide = prs.slides.add()\r\nshape = slide.shapes.add(\"Rectangle\", 100, 100, 200, 100)\r\n```\r\n\r\n## Installation\r\n\r\n```bash\r\npip install pptxlib\r\n```\r\n\r\nOptional extras:\r\n\r\n- For image support (Pillow):\r\n\r\n```bash\r\npip install \"pptxlib[images]\"\r\n```\r\n\r\n- For Matplotlib figure export:\r\n\r\n```bash\r\npip install \"pptxlib[figures]\"\r\n```\r\n\r\n## Requirements\r\n\r\n- Windows operating system\r\n- Microsoft PowerPoint\r\n- Python 3.11 or higher\r\n\r\n<!-- Badges -->\r\n[pypi-v-image]: https://img.shields.io/pypi/v/pptxlib.svg\r\n[pypi-v-link]: https://pypi.org/project/pptxlib/\r\n[python-v-image]: https://img.shields.io/pypi/pyversions/pptxlib.svg\r\n[python-v-link]: https://pypi.org/project/pptxlib\r\n[GHAction-image]: https://github.com/daizutabi/pptxlib/actions/workflows/ci.yaml/badge.svg?branch=main&event=push\r\n[GHAction-link]: https://github.com/daizutabi/pptxlib/actions?query=event%3Apush+branch%3Amain\r\n[codecov-image]: https://codecov.io/github/daizutabi/pptxlib/coverage.svg?branch=main\r\n[codecov-link]: https://codecov.io/github/daizutabi/pptxlib?branch=main\r\n",
"bugtrack_url": null,
"license": "MIT License Copyright (c) 2024 Daizu Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
"summary": "Automate Microsoft PowerPoint operations. Create, modify, and manage PowerPoint presentations programmatically with a simple and intuitive interface",
"version": "0.2.6",
"project_urls": {
"Documentation": "https://github.com/daizutabi/pptxlib",
"Issues": "https://github.com/daizutabi/pptxlib/issues",
"Source": "https://github.com/daizutabi/pptxlib"
},
"split_keywords": [
"automation",
" com",
" microsoft",
" office",
" powerpoint",
" pptx",
" presentation",
" win32com",
" windows"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "630e5d9a2ac152145f0a9d2b3592e914df71491d428462a1dde13efc79e6c0c0",
"md5": "e021d682738a65bcd18a681124844bd3",
"sha256": "ced5f4f6b184f7ea2f08f56e88a2becda9c86aacd51b1987fd9be7a163919842"
},
"downloads": -1,
"filename": "pptxlib-0.2.6-py3-none-any.whl",
"has_sig": false,
"md5_digest": "e021d682738a65bcd18a681124844bd3",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.11",
"size": 19606,
"upload_time": "2025-08-10T22:20:37",
"upload_time_iso_8601": "2025-08-10T22:20:37.723471Z",
"url": "https://files.pythonhosted.org/packages/63/0e/5d9a2ac152145f0a9d2b3592e914df71491d428462a1dde13efc79e6c0c0/pptxlib-0.2.6-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "14bd987df06ed8f006a6723d765d36d33ad321d00f891d3f726f8a3d7d3f2d27",
"md5": "c4a61963fc2a15e1823709ece33e87b6",
"sha256": "771372ccd536357c369e8414ca0595e23739a034c94ea788a434a6409decf3f7"
},
"downloads": -1,
"filename": "pptxlib-0.2.6.tar.gz",
"has_sig": false,
"md5_digest": "c4a61963fc2a15e1823709ece33e87b6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.11",
"size": 15088,
"upload_time": "2025-08-10T22:20:38",
"upload_time_iso_8601": "2025-08-10T22:20:38.911848Z",
"url": "https://files.pythonhosted.org/packages/14/bd/987df06ed8f006a6723d765d36d33ad321d00f891d3f726f8a3d7d3f2d27/pptxlib-0.2.6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-10 22:20:38",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "daizutabi",
"github_project": "pptxlib",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "pptxlib"
}