Metadata-Version: 2.1
Name: projectconnector
Version: 0.1.1
Summary: 
Author: Massimo Rebuglio
Author-email: massimo.rebuglio@polito.it
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Description-Content-Type: text/markdown

# Project 

A Basic Win32 Python Controller for Microsoft Project. It requires an installed Microsoft Project license. Not affiliated with Microsoft.

Example:

```
from msproject import Project, Task

project = Project(r"C:\Users\mrebu\Desktop\trackprj.mpp")

print(project.name)
task: Task
for t in project.tasks:
    print(t.name)
```
