skillfed

dropbox

Official Dropbox API Client

dropbox v12.2.1 2.3M downloads/30d#3,122 on PyPI982
Permissive license MIT Active released

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 dropbox

uv

uv add dropbox

poetry

poetry add dropbox

Installing 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

Development Status :: 5 - Production/StableIntended Audience :: DevelopersOperating System :: OS IndependentProgramming Language :: PythonProgramming Language :: Python :: 3Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: Implementation :: CPythonProgramming Language :: Python :: Implementation :: PyPyTopic :: Software Development :: Libraries :: Python Modules

Tags

dropbox api client pythondropbox file upload downloaddropbox sdk pythondropbox authentication oauthdropbox account managementdropbox api integrationdropbox file operations
api-clientoauthcloud-storage

More Python Modules packages