standalone-python-scripts
النجوم١٣
التفرعات٠
آخر تحديث٢٣ مايو ٢٠٢٦ في ١٤:١٠
Standalone Python Scripts
التثبيت
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
SKILL.md
readonlyالقائمة
Standalone Python Scripts
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Dev In Browser
Fastapi_Stripe
Fix Tests
Implement Fastapi Routes
Plan Only
Python Command
استنادا إلى تصنيف SOC المهني
| name | standalone-python-scripts |
| description | Standalone Python Scripts |
Use this header:
#!/usr/bin/env -S uv run --script
# /// script
# requires-python = ">=3.13"
# dependencies = []
# ///
dependencies variable in the above commentuv run --script.click for CLI interfaces# matches full lowercase git shas (short or full)
SHA_REGEX = re.compile(r"^[0-9a-f]{7,40}$")
# matches any char not allowed in dns labels
SAFE_CHARS_REGEX = re.compile(r"[^a-z0-9-]")
DEFAULT_ENVIRONMENT_NAME = "production"
DEFAULT_SERVICE_NAME = "Postgres"
structlog_config for logging. Read the usage guide: @https://github.com/iloveitaly/structlog-config/