インストール
インストール
Section titled “インストール”HydraSkill は Python、Node.js、Go の公式 SDK を提供しています。お使いの言語を選んでください:
Python
Section titled “Python”pip install hydraskillPython 3.8 以上が必要です。requests、httpx、aiohttp、playwright と互換性があります。
Node.js
Section titled “Node.js”npm install hydraskillNode.js 18 以上が必要です。axios、fetch、puppeteer、playwright で動作します。
go get github.com/hydraskill/go-sdkGo 1.21 以上が必要です。
CLI(任意)
Section titled “CLI(任意)”手軽なテストやデバッグ用に:
npx hydraskill initこれにより .hydraskill.yml 設定ファイルが作成され、API key が検証されます。
API key の取得
Section titled “API key の取得”- アカウントを作成(無料プランあり)
- Dashboard → API Keys へ移動
- Create Key をクリック
- key をコピー — 表示は一度だけです
export HYDRASKILL_API_KEY="sk-your-key-here"インストールの確認
Section titled “インストールの確認”from hydraskill import ProxyClient
client = ProxyClient() # 環境変数から HYDRASKILL_API_KEY を読み取りstatus = client.health_check()print(status) # {'status': 'ok', 'latency_ms': 45}次のステップ
Section titled “次のステップ”→ クイックスタートガイド — 最初のプロキシリクエストを行う