httpx
Installation
SKILL.md
HTTPX Skill
HTTPX is a fully featured HTTP client for Python that provides both synchronous and asynchronous APIs, with support for HTTP/1.1 and HTTP/2.
Quick Start
Basic Usage
import httpx
# Simple GET request
response = httpx.get('https://api.example.com/data')
print(response.status_code)
print(response.json())
# POST request with JSON data
response = httpx.post('https://api.example.com/users', json={'name': 'Alice'})
Related skills
More from slanycukr/riot-api-project
axios
Promise-based HTTP client for making requests from browser and Node.js
140radix-ui
Build accessible, unstyled React UI components with Radix Primitives
56structlog
Structured logging for Python applications with context support and powerful processors
46uvicorn
ASGI server for Python web applications - Fast, production-ready server for async frameworks
41apscheduler
Advanced Python Scheduler - Task scheduling and job queue system
20zod v4
TypeScript-first schema validation library with static type inference and runtime validation
14