skillfed

boxsdk

Official Box Python SDK

boxsdk v10.14.0 4.7M downloads/30d#2,262 on PyPI458
Permissive license Apache-2.0, http://www.apache.org/licenses/LICENSE-2.0 Active released

What it is and what it does

The Box Python SDK v10 is a client library for the Box Content Cloud API, built on an auto-generated codebase. It replaces the older manual boxsdk v3 and provides complete API coverage with embedded documentation, automatic retries with exponential backoff, and exception handling. The SDK supports multiple authentication methods including Developer Token, OAuth 2.0, Client Credentials Grant, and JWT.

Developers use it to programmatically interact with Box accounts—listing folders, uploading and downloading files, managing permissions, and accessing other Box features. The library handles HTTP communication through requests and requests-toolbelt, manages authentication state, and abstracts Box's REST API into Python objects and manager classes. It is intended for new applications and for users migrating from earlier SDK versions.

Use it for:

  • Automate file uploads, downloads, and organization in Box from Python applications.
  • Build integrations that list, search, and manage Box folders and files programmatically.
  • Implement Box authentication in web or desktop applications using OAuth 2.0 or JWT.
  • Create batch operations on Box content without manual API calls.
  • Embed Box content management into data pipelines or ETL workflows.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Provides a Python client library for interacting with Box's cloud content management API, supporting authentication, file operations, and folder management.

Yes. The SDK is actively maintained, has low install friction, carries no known vulnerabilities, and is the recommended choice for new Box integrations. Use v10 if starting fresh; existing v3 users should evaluate migration to v10 or v4 depending on their codebase state.

Install

boxsdk on PyPI

pip

pip install boxsdk

uv

uv add boxsdk

poetry

poetry add boxsdk

Installing boxsdk

Before you install

Low install friction with only 2 runtime dependencies (requests and requests-toolbelt). Actively maintained with a release 9 days old and recent commits; marked as Production/Stable.

License in practice

Apache-2.0 license is permissive, allowing commercial and private use with minimal restrictions beyond attribution and liability disclaimers.

Quickstart

pip install boxsdk>=10

from boxsdk import BoxClient, BoxDeveloperTokenAuth

auth = BoxDeveloperTokenAuth(token='YOUR_TOKEN')
client = BoxClient(auth=auth)
for item in client.folders.get_folder_items('0').entries:
    print(item.name)

Requires a Box Developer Token or other supported authentication credentials (OAuth 2.0, Client Credentials, or JWT); JWT auth requires optional jwt extra dependencies.

Verify before relying

  • Whether all Box API endpoints are fully covered or if some legacy endpoints remain unavailable in v10.
  • Performance characteristics and rate-limiting behavior when handling large file operations or bulk requests.
  • Compatibility guarantees for PyPy implementation beyond CPython versions listed.

Package facts

License Apache-2.0, http://www.apache.org/licenses/LICENSE-2.0 (permissive)
Python support not specified
Install friction low — pure-Python wheel
Runtime dependencies 2 — requests, requests-toolbelt
Maintenance actively maintained — 9 days since the last release
Last repo commit
First released
Downloads 4,661,408/month — #2,262 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: boxsdk-10.14.0-py3-none-any.whl

Keywords: box, sdk, api, rest, boxsdk, box-sdk-gen

Development Status :: 5 - Production/StableIntended Audience :: DevelopersLicense :: OSI Approved :: Apache Software LicenseOperating System :: MacOS :: MacOS XOperating System :: Microsoft :: WindowsOperating System :: OS IndependentOperating System :: POSIXProgramming Language :: PythonProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.8Programming Language :: Python :: 3.9Programming Language :: Python :: Implementation :: CPythonProgramming Language :: Python :: Implementation :: PyPyTopic :: Software Development :: Libraries :: Python Modules

Tags

box api python clientbox cloud storage sdkbox content management apibox file operations librarybox authentication pythonbox rest api wrapperbox folder management
box-apirest-clientcloud-storage

More Python Modules packages