ワンクリックで
b2-native-python
Backblaze B2 cloud storage via b2sdk Python SDK. Auth, upload, download, buckets, keys, large files, sync.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Backblaze B2 cloud storage via b2sdk Python SDK. Auth, upload, download, buckets, keys, large files, sync.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Docker on Mac with OrbStack. Containers, Dockerfiles, images, Compose, BuildKit, volumes, networking. Use when working with Dockerfiles, compose.yaml, docker/docker compose/buildx commands, or containerizing any service.
Electron desktop app development across macOS and Windows. Including security, performance, using code beyond Javascript & Typescript, native APIs, storage, debugging and troubleshooting issues, storage, and electron best practices. Use when working with electron code, troubleshooting, testing, preparing for release.
Build Electron apps for macOS with Next.js/React/TypeScript/Bun. Covers project setup, main/renderer/preload architecture, IPC, macOS window styling, vibrancy sidebar, traffic lights, native file system, dialogs, audio capture, desktopCapturer, storage (electron-store, SQLite), native modules (N-API, node-gyp, @electron/rebuild), memory optimization (V8 cage, leaks, window pooling), performance (startup, main-thread, virtualization), permissions and entitlements, notifications, dock/tray/menus, deep links, auto-update (electron-updater, Squirrel.Mac), electron-builder packaging, DMG, code signing, notarytool notarization, universal arm64+x64 builds, Mac App Store, context isolation and contextBridge security. Use when building, debugging, packaging, or distributing any Electron app targeting macOS.
Relevant when connecting your app/code with Google Calendar API v3 via TypeScript/JavaScript. Includes OAuth2, token refresh, CRUD on events, recurring events, conference/join links, RSVP, attendees, incremental sync, push notifications, and more.
When using the `datasets` library, `huggingface_hub`, or working with datasets on the HuggingFace Hub. Covers loading, streaming, resumable download, partial access, discovery, creation, upload, folder builders, WebDataset, data cards, caching, FAISS, and integrations.
Find & remove duplicate/near-duplicate images using perceptual hashing (PHash, AHash, DHash, WHash) and CNN embeddings. Use when deduplicating image datasets or comparing image similarity in python. Libraries: imagededup and imagehash
| name | b2-native-python |
| description | Backblaze B2 cloud storage via b2sdk Python SDK. Auth, upload, download, buckets, keys, large files, sync. |
b2sdk)Official Python SDK for Backblaze B2 Cloud Storage using the B2 Native API.
from b2sdk.v3 import InMemoryAccountInfo, B2Api
info = InMemoryAccountInfo()
b2_api = B2Api(info)
b2_api.authorize_account("production", APPLICATION_KEY_ID, APPLICATION_KEY)
bucket = b2_api.get_bucket_by_name("my-bucket")
bucket.upload_local_file(
local_file="/path/to/file.pdf",
file_name="remote/file.pdf",
)
pip install b2sdk
# or
uv add b2sdk
Always import from b2sdk.v3 (latest stable interface).