Python wrapper for the VBA Object library
Project description
Matita - Full Microsoft Office automation in Python ✏️
Matita is a Python wrapper for the VBA Object library. You get the full power of VBA with the convenience of Python. See the documentation for more details.
Hello world with matita
Excel 📊
from matita.office import excel as xl
def hello_world():
xl_app = xl.Application()
xl_app.visible = True
wkb = xl_app.workbooks.add()
wks = wkb.worksheets(1)
c = wks.cells(1,1)
c.value = "Hello world!"
PowerPoint 🖼️
from matita.office import powerpoint as pp
def hello_world():
pp_app = pp.Application()
pp_app.visible = True
prs = pp_app.presentations.add()
sld = prs.slides.add(1, pp.ppLayoutText)
shp = sld.shapes.addshape(pp.msoShapeRectangle, 100, 100, 200, 100)
shp.text_frame.text_range.text = "Hello world!"
Word 📄
from matita.office import word as wd
def hello_world():
wd_app = wd.Application()
wd_app.visible = True
doc = wd_app.documents.add()
par = doc.content.paragraphs.add()
par.range.text = "Hello world!"
Outlook 📧
from matita.office import outlook as ol
def hello_world():
ol_app = ol.Application()
mail = ol.MailItem(ol_app.create_item(ol.olMailItem))
mail.body = "Hello world!"
mail.display()
Installation
python -m pip install matita
License
Copyright 2026 Luca Franceschini (lucaf.eu)
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
This program is based on the Office VBA Reference by Microsoft Corporation, licensed under Creative Commons Attribution 4.0 International.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file matita-1.0.3.tar.gz.
File metadata
- Download URL: matita-1.0.3.tar.gz
- Upload date:
- Size: 2.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
521a8ff7d99949c688646be3315b60f40c00fc82fb4245952cc5c3aad8b705d6
|
|
| MD5 |
76ff1c0beba7dbb475bebec00cdd9a6b
|
|
| BLAKE2b-256 |
f1d05621346a5316c05514a47ff897b995cc55177c6b0bfe392c37c36b265975
|
File details
Details for the file matita-1.0.3-py3-none-any.whl.
File metadata
- Download URL: matita-1.0.3-py3-none-any.whl
- Upload date:
- Size: 850.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dff9d6731bf52a5a8a6d3b8b4fa4e51898806a5b451214cc4c98d50412a96404
|
|
| MD5 |
6fc221932d67c7422824d94595671670
|
|
| BLAKE2b-256 |
32fb97928566af237174d2e7b6bc4068b2e5ba96eee554b45a5eebdf1283f70b
|