Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
- .woodpecker.yaml: image paths -> library/autojanet-{agent,dispatcher}
- .woodpecker.yaml: secret names RS_HARBOR_USER / RS_HARBOR_PASS (global)
- container/Dockerfile: restore COPY skills/, skills/ populated from opencode config
- skills/: 84 opencode skills bundled into image
- k8s/manifests: update image refs to library/
2.6 KiB
2.6 KiB
Python Language Prompt Snippet
Key Concepts
- Decorators: Functions that wrap other functions or classes using
@decoratorsyntax - List/Dict Comprehensions: Concise syntax for creating collections from iterables
- Generators and Yield: Lazy iterators using
yieldfor memory-efficient data processing - Context Managers:
withstatement for resource management via__enter__/__exit__ - Type Hints and Typing Module: Optional static type annotations for tooling and documentation
- Dunder Methods: Special methods like
__init__,__repr__,__eq__defining object behavior - Metaclasses: Classes that define how other classes are created (type as default metaclass)
- Dataclasses:
@dataclassdecorator auto-generating boilerplate from field annotations - Protocols: Structural subtyping via
typing.Protocolfor duck-type-safe interfaces - Descriptors: Objects defining
__get__,__set__,__delete__to customize attribute access - Async/Await with Asyncio: Cooperative concurrency using coroutines and an event loop
Import Patterns
from module import name— import specific name from moduleimport module— import entire module, access viamodule.namefrom package.module import name— absolute import from nested packagefrom . import relative— relative import within a package
File Patterns
__init__.py— package initializer (barrel equivalent), can re-export public API__main__.py— package entry point when run withpython -m packageconftest.py— pytest shared fixtures and hooks (auto-discovered)setup.py/pyproject.toml— project configuration and build metadatarequirements.txt— pinned dependency list
Common Frameworks
- Django — Full-stack web framework with ORM, admin, and batteries included
- FastAPI — Modern async API framework with automatic OpenAPI docs
- Flask — Lightweight WSGI micro-framework for web applications
- SQLAlchemy — SQL toolkit and ORM with unit-of-work pattern
- Celery — Distributed task queue for background job processing
- Pydantic — Data validation and settings management using type annotations
Example Language Notes
Uses
@dataclassdecorator to auto-generate__init__,__repr__, and__eq__from field annotations. This eliminates boilerplate while keeping the class definition readable and the generated methods consistent.When
__init__.pyre-exports symbols, it acts as the package's public API surface — consumers import from the package rather than reaching into internal modules.