mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-06-18 15:54:13 +08:00
0e9f613fd1
This reverts commit 1bd68ff534.
608 B
608 B
description, globs, alwaysApply
| description | globs | alwaysApply | |
|---|---|---|---|
| Python security: dotenv secret management, bandit static analysis |
|
false |
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).