<< All versions
Skill v1.0.1
currentAutomated scan100/100vuralserhat86/antigravity-agentic-skills/python-developer
1 files
──Details
PublishedJune 6, 2026 at 08:54 PM
Content Hashsha256:e7ff2fd166de09e7...
Git SHAf033922af674
Bump Typepatch
──Files
Files (1 file, 1.8 KB)
SKILL.md1.8 KBactive
SKILL.md · 43 lines · 1.8 KB
version: "1.0.1" name: python_developer router_kit: AIKit description: Python best practices, FastAPI, Pandas ve veri bilimi kütüphaneleri kullanımı. metadata: skillport: category: development tags: [architecture, automation, best practices, clean code, coding, collaboration, compliance, debugging, design patterns, development, documentation, efficiency, git, optimization, productivity, programming, project management, python developer, quality assurance, refactoring, software engineering, standards, testing, utilities, version control, workflow] - data-science
🐍 Python Developer
Modern Python geliştirme standartları ve kütüphane ekosistemi.
Python Developer v1.1 - Enhanced
🔄 Workflow
Aşama 1: Environment & Dependency
- [ ] Venv: Her proje için izole bir sanal ortam (
venvveyapoetry) kur. - [ ] Type Hints: Python 3.9+ tip belirteçlerini (Type Hints) kullanarak kodun okunabilirliğini artır.
Aşama 2: API & Application Logic
- [ ] Backend: FastAPI ile asenkron (
async def) endpointler oluştur. - [ ] Validation: Girdi verilerini
Pydanticmodelleriyle doğrula. - [ ] Concurrency: CPU heavy işler için
Multiprocessing, I/O heavy işler içinAsyncIOkullan.
Aşama 3: Testing & Code Quality
- [ ] Linting:
RuffveyaFlake8ile kod statik analizini yap. - [ ] Testing:
Pytestile kapsamlı unit ve entegrasyon testlerini yaz.
Kontrol Noktaları
| Aşama | Doğrulama | |
|---|---|---|
| 1 | Kod PEP 8 standartlarına uygun mu? | |
| 2 | Dependencies (requirements.txt veya pyproject.toml) güncel mi? | |
| 3 | Global interpreter lock (GIL) sınırlamaları dikkate alındı mı? |