module documentation

Undocumented

Class Dropbox Use this class to make requests to the Dropbox API using a user's access token. Methods of this class are meant to act on the corresponding user's Dropbox.
Class DropboxTeam Use this class to make requests to the Dropbox API using a team's access token. Methods of this class are meant to act on the team, but there is also an :meth:`as_user` method for assuming a team member's identity.
Class RouteErrorResult The error result of a call to a route.
Class RouteResult The successful result of a call to a route.
Exception BadInputException Thrown if incorrect types/values are used
Function create_session Creates a session object that can be used by multiple :class:`Dropbox` and :class:`DropboxTeam` instances. This lets you share a connection pool amongst them, as well as proxy parameters.
Constant APP_AUTH Undocumented
Constant HTTP_STATUS_INVALID_PATH_ROOT Undocumented
Constant NO_AUTH Undocumented
Constant PATH_ROOT_HEADER Undocumented
Constant SELECT_ADMIN_HEADER Undocumented
Constant SELECT_USER_HEADER Undocumented
Constant TEAM_AUTH Undocumented
Constant TOKEN_EXPIRATION_BUFFER Undocumented
Constant USER_AUTH Undocumented
Variable __version__ Undocumented
Class _DropboxTransport Responsible for implementing the wire protocol for making requests to the Dropbox API.
def create_session(max_connections=8, proxies=None, ca_certs=None): (source)

Creates a session object that can be used by multiple :class:`Dropbox` and :class:`DropboxTeam` instances. This lets you share a connection pool amongst them, as well as proxy parameters. :param int max_connections: Maximum connection pool size. :param dict proxies: See the `requests module <http://docs.python-requests.org/en/latest/user/advanced/#proxies>`_ for more details. :rtype: :class:`requests.sessions.Session`. `See the requests module <http://docs.python-requests.org/en/latest/user/advanced/#session-objects>`_ for more details.

APP_AUTH: str = (source)

Undocumented

Value
'app'
HTTP_STATUS_INVALID_PATH_ROOT: int = (source)

Undocumented

Value
422

Undocumented

Value
'noauth'
PATH_ROOT_HEADER: str = (source)

Undocumented

Value
'Dropbox-API-Path-Root'
SELECT_ADMIN_HEADER: str = (source)

Undocumented

Value
'Dropbox-API-Select-Admin'
SELECT_USER_HEADER: str = (source)

Undocumented

Value
'Dropbox-API-Select-User'
TEAM_AUTH: str = (source)

Undocumented

Value
'team'
TOKEN_EXPIRATION_BUFFER: int = (source)

Undocumented

Value
300
USER_AUTH: str = (source)

Undocumented

Value
'user'
__version__: str = (source)

Undocumented