원클릭으로
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).