n8n-code-python
Expert guidance for writing and optimizing Python code within n8n automation workflows.
Install
npx skills add https://github.com/czlonkowski/n8n-skills --skill n8n-code-pythonStats
| Total installs | 1,053 |
| Weekly installs | 1.0K |
| GitHub stars | 3.8K |
| First seen | Jan 20, 2026 |
| Source | @czlonkowski/n8n-skills |
Summary
- Python is limited to standard library only (json, datetime, re, base64, hashlib, urllib.parse, math, random, statistics); no external packages like requests, pandas, or numpy
- Must return data as a list of dictionaries with {"json": {...}} structure; common mistakes include incorrect return format, missing return statements, and unsafe dictionary access without .get()
- Two execution modes available: "Run Once for All Items" (recommended, uses _input.all()) and "Run Once for Each Item" (uses _input.item); webhook data is nested under _json["body"], not at root level
- Use Python only when you need specific standard library functions or are significantly more comfortable with Python syntax; JavaScript is preferred for 95% of use cases due to better n8n helper functions and documentation
Tags
Related skills
| Skill | Installs | vs n8n-code-python |
|---|---|---|
| asc-localize-metadata | 1,006 | -47 |
| sentry-fix-issues | 1,111 | +58 |
| competitive-ads-extractor | 1,110 | +57 |
| developer-growth-analysis | 984 | -69 |
| asc-app-create-ui | 968 | -85 |
FAQ
- How many installs does n8n-code-python have?
- n8n-code-python has 1,053 total installs and 1.0K installs this week.
- Where is n8n-code-python hosted?
- n8n-code-python is published by @czlonkowski/n8n-skills at https://github.com/czlonkowski/n8n-skills.
- How many GitHub stars does n8n-code-python have?
- n8n-code-python has 3.8K GitHub stars.
- When was n8n-code-python first indexed?
- OrangeBot.AI first indexed n8n-code-python on Jan 20, 2026.
- How do I install n8n-code-python?
- Run: npx skills add https://github.com/czlonkowski/n8n-skills --skill n8n-code-python