A package providing project management classes NetworkDiagram and NetworkDiagramExporter.
Project description
projectmanagement
A Python library for creating and exporting project management network diagrams, including critical path visualization, using pandas and xlsxwriter.
Installation
Install via pip:
pip install projectmanagement
---
### Import Classes
```python
from projectmanagement import NetworkDiagram, NetworkDiagramExporter
import pandas as pd
# Create example data
data = {
'Activity': ['A', 'B', 'C'],
'Duration': [5, 3, 7],
'ES': [0, 5, 8],
'EF': [5, 8, 15],
'Slack': [0, 0, 0],
'LS': [0, 5, 8],
'LF': [5, 8, 15],
}
df = pd.DataFrame(data)
# Create a NetworkDiagram
network_diagram = NetworkDiagram(df)
# Export to Excel
exporter = NetworkDiagramExporter(network_diagram, "output.xlsx")
exporter.export()
print("Network Diagram exported successfully!")
5. Features
Highlight the features of your package:
markdown
Features
- Create network diagrams for project management
- Export formatted network diagrams to Excel
- Highlight activities with zero slack (critical path) in orange
- Easy integration with
pandas
Contributing
Contributions are welcome! Please fork the repository and submit a pull request with your changes.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
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 pmtk-0.1.0.tar.gz.
File metadata
- Download URL: pmtk-0.1.0.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01993c968cee3e53053783ce993e2e7c8f9cf4a117eff663a4b89b6d5e747a06
|
|
| MD5 |
5779945b1e0d974694c788c2f4fd2216
|
|
| BLAKE2b-256 |
e5b32b1125bf4ecd7c711bb20093991f8d3bc75c989a228dd0d5704057fc99ad
|
File details
Details for the file pmtk-0.1.0-py3-none-any.whl.
File metadata
- Download URL: pmtk-0.1.0-py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be3b93e8db9ca666899fad73958458767cd9b5fc4b5d677075fe35d093cd91bd
|
|
| MD5 |
dd839521759ced0cf0832bdbdb3d681f
|
|
| BLAKE2b-256 |
8b86ea9225b36dd2751381ebdf2095c34bb776a434ebfc90d212ae009f685986
|