Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
A Python package that creates a high-quality Gantt chart to visualize project timelines, work packages, milestones, and deliverables
To use this application, you need to have Python installed. You also need the following Python packages:
plotly
kaleido
pip install plotly kaleido
def create_gantt_chart(work_packages, milestone_color, deliverable_color, annotation_text, start_date, finish_date, project_title, save=False):
pejman.ebrahimi77@gmail.com
https://giltech-megoldasok.com/
Below is an example of how to use the create_gantt_chart
function from the pejmanai_msca.gantt_chart
module:
from pejmanai_msca.gantt_chart import create_gantt_chart
work_packages = [
{"Task": "WP1-Subtask1", "Start": "2024-04-01", "Finish": "2024-07-30", "Type": "M1"},
{"Task": "WP1-Subtask2", "Start": "2024-08-01", "Finish": "2024-12-30", "Type": "D1"},
{"Task": "WP1-Subtask3", "Start": "2025-01-01", "Finish": "2025-04-30", "Type": "M2"},
{"Task": "WP2-Subtask1", "Start": "2024-05-01", "Finish": "2026-04-30", "Type": "M3"},
{"Task": "WP2-Subtask2", "Start": "2024-10-01", "Finish": "2025-01-30", "Type": "M4"},
{"Task": "WP3-Subtask1", "Start": "2025-02-01", "Finish": "2026-02-28", "Type": "M5"},
{"Task": "WP4-Subtask1", "Start": "2025-02-01", "Finish": "2026-02-28", "Type": "D2"}
]
milestone_color = '#f33126'
deliverable_color = '#2ca09c'
annotation_text = (
"<span style='color:#f33126;'>●</span> Milestones<br>"
"<span style='color:#2ca09c;'>●</span> Deliverables<br>"
"W1 - Research<br>"
"W2 - R & D<br>"
"W3 - Training loop<br>"
"W4 - Final report"
)
project_title = "MSCA Gantt Chart Example"
create_gantt_chart(work_packages, milestone_color, deliverable_color, annotation_text, '2024-01-01', '2026-12-31', project_title, save=True)```
FAQs
A Python package that creates a high-quality Gantt chart to visualize project timelines, work packages, milestones, and deliverables
We found that pejmanai-msca demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.