← スキル一覧に戻る

python-style-guide-compact
by CodingKaiser
list of claude skills for omics and programming
⭐ 0🍴 1📅 2026年1月19日
SKILL.md
name: python-style-guide-compact description: Compact Python style guide. Key conventions for clean, typed, documented code.
Python Style Essentials
Imports
# Standard library
import os
from pathlib import Path
# Third-party
import numpy as np
# Application
from myproject import utils
- Absolute imports only, alphabetized within groups
- Application imports: Prefer module imports (
from myproj import utils) to avoid circular deps. - Third-party/Std: Class imports ok (
from pathlib import Path,from pydantic import BaseModel).
Type Annotations
def process(items: list[str], config: dict[str, Any] | None = None) -> int:
"""Process items with optional config."""
if config is None:
config = {}
return len(items)
- Use built-in types:
list,dict,set,tuple(nottyping.List) - Annotate all public functions
- Never use mutable defaults:
= Nonethen check inside
Naming
| Type | Style | Example |
|---|---|---|
| module | lower_under | my_module.py |
| class | CapWords | MyClass |
| function/method | lower_under | do_thing() |
| constant | UPPER_UNDER | MAX_SIZE |
| private | _leading | _internal |
Docstrings (Google style)
def fetch_data(url: str, timeout: int = 30) -> dict[str, Any]:
"""Fetch data from URL.
Args:
url: The endpoint URL.
timeout: Request timeout in seconds.
Returns:
Parsed JSON response as dict.
Raises:
ConnectionError: If request fails.
"""
Key Rules
- 88 char lines (Ruff/Black default), 4-space indent
- f-strings for string interpolation
- Logging: Use Loguru:
logger.info("Item {}", item)(lazy{}) - File I/O: Prefer
Path.read_text()/write_text()overopen()for simple operations - Implicit false:
if not items:notif len(items) == 0: - Comprehensions: keep simple, use loop if complex
- Exceptions: catch specific, never bare
except: - Empty
__init__.py: no code in__init__.pyfiles
Preferred Libraries
| Purpose | Library |
|---|---|
| Data validation | pydantic |
| Logging | loguru |
| CLI | cyclopts, rich |
| Testing | pytest, pytest-mock |
Common Patterns
# Property
@property
def area(self) -> float:
return self._side ** 2
# Ternary
x = "yes" if condition else "no"
# Main guard
if __name__ == "__main__":
main()
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です