python▌
102 indexed skills · max 10 per page
python-patterns
affaan-m/everything-claude-code · Backend
Pythonic idioms, PEP 8 standards, type hints, and best practices for building robust Python applications. \n \n Covers core principles including readability, explicit code, EAFP exception handling, and modern type hints with generics and protocols \n Includes practical patterns for error handling, context managers, comprehensions, generators, dataclasses, and decorators with runnable examples \n Addresses concurrency patterns for I/O-bound (threading, async/await) and CPU-bound (multiprocessing)
deep-learning-python
mindrally/skills · Backend
You are an expert in deep learning, transformers, diffusion models, and LLM development using Python libraries like PyTorch, Diffusers, Transformers, and Gradio. Follow these guidelines when writing deep learning code.
dataverse-python-usecase-builder
github/awesome-copilot · Frontend
Generate complete, production-ready solutions for Dataverse SDK use cases with architecture guidance. \n \n Analyzes requirements across data volume, frequency, performance, and error tolerance to recommend appropriate patterns (transactional, batch, query, file management, scheduled, or real-time) \n Provides full Python implementation including authentication, singleton service classes, CRUD operations, bulk processing, and comprehensive error handling \n Includes data model design with table
kernel-python-sdk
kernel/skills · Backend
Use the Kernel Python SDK when you need to:
zarr-python
davila7/claude-code-templates · Backend
Zarr is a Python library for storing large N-dimensional arrays with chunking and compression. Apply this skill for efficient parallel I/O, cloud-native workflows, and seamless integration with NumPy, Dask, and Xarray.
python
siviter-xyz/dot-agent · Backend
Standards and best practices for Python development. Follow these guidelines when writing or modifying Python code.
python-testing
affaan-m/everything-claude-code · Backend
Comprehensive pytest testing strategies with TDD, fixtures, mocking, and coverage best practices. \n \n Covers TDD methodology (red-green-refactor cycle), parametrization, fixtures with multiple scopes, and mocking patterns for unit and integration testing \n Includes pytest fundamentals: assertions, markers for test selection, exception testing, and async test support with pytest-asyncio \n Provides practical patterns for testing APIs, databases, file operations, and class methods with real cod
dataverse-python-production-code
github/awesome-copilot · Backend
Generate production-ready Python code for Dataverse SDK with error handling and best practices. \n \n Implements comprehensive error handling using DataverseError hierarchy with retry logic and exponential backoff for transient failures \n Enforces singleton client pattern for connection management and includes structured logging for audit trails and debugging \n Applies OData optimization techniques: server-side filtering, column selection, and pagination to reduce data transfer \n Provides typ
temporal-python-testing
wshobson/agents · Backend
Pytest-based testing strategies for Temporal workflows with time-skipping, mocking, and replay validation. \n \n Covers unit testing (WorkflowEnvironment with time-skipping), integration testing (mocked activities), and replay testing for determinism validation \n Time-skipping enables month-long workflows to execute in seconds; ActivityEnvironment isolates activity logic for fast feedback \n Includes progressive disclosure resources for unit testing, integration testing, replay testing, and loc
python-resilience
wshobson/agents · Backend
Automatic retries, exponential backoff, timeouts, and fault-tolerant decorators for Python services. \n \n Covers transient vs. permanent failure classification, exponential backoff with jitter, bounded retries, and timeout patterns using the tenacity library \n Includes nine production patterns: basic retry, selective error handling, HTTP status code retries, combined exception and status retries, retry logging, timeout decorators, stacked decorators, dependency injection for testing, and fail-