release: v7.0.0 - 20k Stars Celebration

- Add 300+ new skills from 35+ community repositories
- Total collection now at 1,200+ skills
- New categories: UI/UX, Security, Data Science, Health, Quantum, Makepad
- Update package.json to v7.0.0
- Update README with new stats and 20k stars celebration banner
- Complete CHANGELOG with all new skills and community credits
- Add release_notes.md with detailed acknowledgments

Validation chain run, catalog regenerated.

Thank you to our incredible community for 20,000 GitHub stars!
This commit is contained in:
sck_0
2026-03-06 09:08:07 +01:00
parent 4473f34650
commit f313788985
230 changed files with 66364 additions and 3199 deletions

View File

@@ -1,9 +1,6 @@
---
name: n8n-code-python
description: "Write Python code in n8n Code nodes. Use when writing Python in n8n, using _input/_json/_node syntax, working with standard library, or need to understand Python limitations in n8n Code nodes."
risk: safe
source: "https://github.com/czlonkowski/n8n-skills/tree/main/skills/n8n-code-python"
date_added: "2026-02-27"
description: Write Python code in n8n Code nodes. Use when writing Python in n8n, using _input/_json/_node syntax, working with standard library, or need to understand Python limitations in n8n Code nodes.
---
# Python Code Node (Beta)
@@ -234,7 +231,7 @@ return [{
}]
```
**See**: DATA_ACCESS.md for comprehensive guide
**See**: [DATA_ACCESS.md](DATA_ACCESS.md) for comprehensive guide
---
@@ -258,7 +255,7 @@ name = webhook_data.get("name")
**Why**: Webhook node wraps all request data under `body` property. This includes POST data, query parameters, and JSON payloads.
**See**: DATA_ACCESS.md for full webhook structure details
**See**: [DATA_ACCESS.md](DATA_ACCESS.md) for full webhook structure details
---
@@ -321,7 +318,7 @@ return [{"data": value}] # Should be {"json": value}
**Why it matters**: Next nodes expect list format. Incorrect format causes workflow execution to fail.
**See**: ERROR_PATTERNS.md #2 for detailed error solutions
**See**: [ERROR_PATTERNS.md](ERROR_PATTERNS.md) #2 for detailed error solutions
---
@@ -371,7 +368,7 @@ import statistics # ✅ Statistical functions
- ✅ Use **HTTP Request node** + **HTML Extract node**
- ✅ Or switch to **JavaScript** with regex/string methods
**See**: STANDARD_LIBRARY.md for complete reference
**See**: [STANDARD_LIBRARY.md](STANDARD_LIBRARY.md) for complete reference
---
@@ -491,7 +488,7 @@ else:
return [{"json": {"error": "No values found"}}]
```
**See**: COMMON_PATTERNS.md for 10 detailed Python patterns
**See**: [COMMON_PATTERNS.md](COMMON_PATTERNS.md) for 10 detailed Python patterns
---
@@ -555,7 +552,7 @@ email = _json["body"]["email"]
email = _json.get("body", {}).get("email", "no-email")
```
**See**: ERROR_PATTERNS.md for comprehensive error guide
**See**: [ERROR_PATTERNS.md](ERROR_PATTERNS.md) for comprehensive error guide
---
@@ -599,7 +596,7 @@ from statistics import mean, median, stdev
average = mean([1, 2, 3, 4, 5])
```
**See**: STANDARD_LIBRARY.md for complete reference
**See**: [STANDARD_LIBRARY.md](STANDARD_LIBRARY.md) for complete reference
---
@@ -737,10 +734,10 @@ Before deploying Python Code nodes, verify:
## Additional Resources
### Related Files
- DATA_ACCESS.md - Comprehensive Python data access patterns
- COMMON_PATTERNS.md - 10 Python patterns for n8n
- ERROR_PATTERNS.md - Top 5 errors and solutions
- STANDARD_LIBRARY.md - Complete standard library reference
- [DATA_ACCESS.md](DATA_ACCESS.md) - Comprehensive Python data access patterns
- [COMMON_PATTERNS.md](COMMON_PATTERNS.md) - 10 Python patterns for n8n
- [ERROR_PATTERNS.md](ERROR_PATTERNS.md) - Top 5 errors and solutions
- [STANDARD_LIBRARY.md](STANDARD_LIBRARY.md) - Complete standard library reference
### n8n Documentation
- Code Node Guide: https://docs.n8n.io/code/code-node/