The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"name": "Weekly Reporting Pipeline",
"nodes": [
{
"parameters": {
"triggerTimes": [
{
"mode": "everyWeek",
"hour": 8,
"weekday": "monday"
}
]
},
"name": "Cron",
"type": "n8n-nodes-base.cron",
"typeVersion": 1,
"position": [
240,
300
]
},
{
"parameters": {
"command": "python3 src/pipeline.py",
"workingDirectory": ""
},
"name": "Execute Command",
"type": "n8n-nodes-base.executeCommand",
"typeVersion": 1,
"position": [
520,
300
]
},
{
"parameters": {
"chatId": "<TELEGRAM_CHAT_ID>",
"text": "Reporte actualizado. \u00daltima semana: {{$json.last_week}}"
},
"name": "Telegram",
"type": "n8n-nodes-base.telegram",
"typeVersion": 1,
"position": [
760,
300
]
}
],
"connections": {
"Cron": {
"main": [
[
{
"node": "Execute Command",
"type": "main",
"index": 0
}
]
]
},
"Execute Command": {
"main": [
[
{
"node": "Telegram",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Weekly Reporting Pipeline. Uses executeCommand, telegram. Scheduled trigger; 3 nodes.
Source: https://github.com/arold0/python-n8n-reporting/blob/4f2b288faf60feaa8c2706f2fc65b86fe73e36ac/n8n/workflow.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
Safe Network Reconnaissance Automation. Uses executeCommand, readFile, telegram, notion. Scheduled trigger; 6 nodes.
DevRel Weekly Digest (weekly-digest). Uses executeCommand, telegram. Scheduled trigger; 8 nodes.
Google Drive Index Sync - Template. Uses executeCommand, readBinaryFile, telegram. Scheduled trigger; 7 nodes.
MAIA - Health Check. Uses noOp, telegram, scheduleTrigger, googleSheets. Scheduled trigger; 7 nodes.
9AM IST AI Daily Digest (Arxiv + GitHub + News). Uses httpRequest, llm, telegram. Scheduled trigger; 6 nodes.