Data mine and write scrips for VBA applications on Windows.
Project description
pyvba
The pyvba package was designed to gather data from VBA-based applications (e.g. Microsoft Excel, CATIA, etc.). It may also be used to assist programming VBA macro scripts using the Python language.
Getting Started
Install the Python Package:
pip install pyvba
To export data from a VBA program:
import pyvba
catia = pyvba.Browser("CATIA.Application")
active_document = catia.ActiveDocument
exporter = pyvba.XMLExport(active_document)
exporter.save("output", r"C:\Documents")
The current supported output types are XML and JSON formats. Both support a form the imitates the VBA object tree as well as a dictionary form where each unique object is in the outermost layer.
Example Output:
Note:
BrowserObject
denotes an object defined elsewhere in the output.
{ "MainBody": [
{ "Pad": [
{ "Shapes": [
{ "DirectionOrientation": 0 },
{ "DirectionType": 0 },
{ "FirstLimit": "BrowserObject" },
{ "IsSymmetric": false },
{ "IsThin": false },
{ "MergeEnd": false },
{ "Name": "Pad.1" },
{ "NeutralFiber": false },
{ "SecondLimit": "BrowserObject" },
{ "Sketch": "BrowserObject" }
]},
{ "Shapes": [
{ "DirectionOrientation": 0 },
{ "DirectionType": 0 },
{ "FirstLimit": "BrowserObject" },
{ "IsSymmetric": false },
{ "IsThin": false },
{ "MergeEnd": false },
{ "Name": "Pad.1" },
{ "NeutralFiber": false },
{ "SecondLimit": "BrowserObject" },
{ "Sketch": "BrowserObject" }
]},
{ "Shapes": [
{ "DirectionOrientation": 0 },
{ "DirectionType": 0 },
{ "FirstLimit": "BrowserObject" },
{ "IsSymmetric": false },
{ "IsThin": false },
{ "MergeEnd": false },
{ "Name": "Pad.3" },
{ "NeutralFiber": false },
{ "SecondLimit": "BrowserObject" },
{ "Sketch": "BrowserObject" }
]}
]}
]}
Developer Notes
This package is in beta. Therefore, there are still some problematic bugs and issues that cause errors in certain applications. Contributors are welcome! The project is hosted on GitHub. Report any issues at the issue tracker, but please check to see if the issue already exists!
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
File details
Details for the file pyvba-0.6.0.tar.gz
.
File metadata
- Download URL: pyvba-0.6.0.tar.gz
- Upload date:
- Size: 10.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9690a224242c9052054e50a5a83bc07b5da1fb3e5a4aec18a562d1dbbd1fe25 |
|
MD5 | d44b0e512a830a9541d94e9d2dafd102 |
|
BLAKE2b-256 | 4c9d3a72b7dcdd1841845bd9d2106d8711409b6dd2920bfdc342de5e29bfc5f0 |
File details
Details for the file pyvba-0.6.0-py3-none-any.whl
.
File metadata
- Download URL: pyvba-0.6.0-py3-none-any.whl
- Upload date:
- Size: 11.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d8de0a1fb449e0b6a9d96f2b1177ce447e92271c91a65a689cdf1b71b289e5c |
|
MD5 | b14bbc3efd08351b507852bd125e11e7 |
|
BLAKE2b-256 | 1137c82d689d1e8a1e640809e03aafe8cc010e4d7700aa7cd85a0ccb9eda620a |