dropbox
Official Dropbox API Client
What it is and what it does
The Dropbox SDK is the official Python client for interacting with Dropbox's file storage and account APIs. It handles OAuth authentication (including PKCE flows), file uploads and downloads, folder operations, and account metadata retrieval. The library wraps Dropbox's REST API, abstracting HTTP details behind Python objects and methods.
The package depends on requests for HTTP communication and stone for API specification handling. It targets modern Python versions (3.11+) and is actively maintained by Dropbox, with recent updates addressing API server certificate changes. Installation is straightforward via pip, and the library includes examples for common workflows like OAuth flows and bulk file operations.
Use it for:
- Build applications that upload files to Dropbox programmatically, such as backup tools or data sync utilities.
- Implement OAuth-based authentication flows to allow users to grant your app access to their Dropbox accounts.
- Automate file management tasks like listing, moving, or deleting files within Dropbox folders.
- Retrieve account metadata and file information for reporting or auditing purposes.
- Develop backup and restore functionality that leverages Dropbox's versioning capabilities.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Official Python client library for the Dropbox API, enabling programmatic access to Dropbox file operations, authentication, and account management.
Yes. The Dropbox SDK is the official, actively maintained client library with low install friction, no known vulnerabilities, and permissive licensing. Install it if you need to integrate Dropbox into a Python application. The only consideration is the hard requirement for Python 3.11 or newer; if your project targets earlier versions, you cannot use this package.
Install
dropbox on PyPI
pip
pip install dropboxuv
uv add dropboxpoetry
poetry add dropboxInstalling dropbox
Before you install
Low install friction with a pure-wheel distribution. Actively maintained with a recent release (25 days old) and ongoing repository activity. Requires Python 3.11 or newer; earlier versions are no longer supported.
License in practice
MIT license permits commercial and private use with minimal restrictions, making it suitable for most projects.
Quickstart
pip install dropbox
import dropbox
dbx = dropbox.Dropbox(oauth2_access_token='YOUR_ACCESS_TOKEN')
dbx.files_list_folder('/')
Requires Python 3.11 or newer. Versions 12.0.2 or newer are required for compatibility with current Dropbox API servers; older versions stopped working in January 2026.
Verify before relying
- Specific API endpoint coverage and completeness relative to the full Dropbox API surface.
- Performance characteristics and rate-limiting behavior under high-volume usage.
- Whether stone dependency is a compiled extension or pure Python.
Package facts
| License | MIT (permissive) |
| Python support | supports the current Python release (>=3.11) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 2 — requests, stone |
| Maintenance | actively maintained — 25 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 2,342,903/month — #3,122 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: dropbox-12.2.1-py3-none-any.whl
Tags
More Python Modules packages
Converts domain names between Unicode and…
permissive · top 100 on PyPI
setuptoolsSetuptools is a Python build backend and…
permissive · top 100 on PyPI
PyYAMLPyYAML parses and emits YAML 1.1 data format,…
permissive · top 100 on PyPI
pydanticPydantic validates Python data structures…
permissive · top 100 on PyPI
annotated-typesProvides reusable metadata objects for use with…
permissive · top 100 on PyPI
typing-inspectionProvides runtime tools to inspect and…
permissive · top 100 on PyPI
dropbox-signPython client library for the Dropbox Sign v3…
permissive · top 5,000 on PyPI
stoneStone is an interface description language and…
permissive · top 5,000 on PyPI
python-digitaloceanProvides Python bindings to the DigitalOcean…
copyleft · top 15,000 on PyPI
oauth2clientoauth2client is a deprecated OAuth 2.0 client…
permissive · top 1,000 on PyPI
google-auth-oauthlibIntegrates oauthlib with google-auth to handle…
permissive · top 1,000 on PyPI
oauth2Implements OAuth 1.0 authentication for Python…
permissive · top 15,000 on PyPI
googleadsClient library for interacting with Google Ad…
permissive · top 5,000 on PyPI
Flask-OAuthlibFlask-OAuthlib adds OAuth 1.0a and OAuth 2.0…
permissive · top 15,000 on PyPI
requests-oauthAdds OAuth 1.0 authentication support to the…
permissive · top 5,000 on PyPI
oauthlibOAuthLib implements OAuth 1.0 and OAuth 2.0…
permissive · top 1,000 on PyPI