mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-06-13 11:41:22 +08:00
0e9f613fd1
This reverts commit 1bd68ff534.
524 B
524 B
paths
| paths | ||
|---|---|---|
|
Python Security
This file extends common/security.md with Python specific content.
Secret Management
import os
from dotenv import load_dotenv
load_dotenv()
api_key = os.environ["OPENAI_API_KEY"] # Raises KeyError if missing
Security Scanning
- Use bandit for static security analysis:
bandit -r src/
Reference
See skill: django-security for Django-specific security guidelines (if applicable).