Skip to main content

The Official CrashPlan Python API Client

Project description

Official CrashPlan Python SDK

Build status codecov.io versions Code style: black Documentation Status

pycpg is a Python wrapper around the CrashPlan REST APIs that also provides several other useful utility methods. It is designed to be used for developing your own tools for working with CrashPlan data while avoiding the overhead of session / authentication management.

Requirements

  • Python 3.11+
  • CrashPlan Cloud environment (e.g. console.us1.crashplan.com or console.us2.crashplan.com)

Installation

$ pip install pycpg

Hello, pycpg

Here's a simple example to verify the installation and your server/account.

Launch the Python interpreter

$ python

Import a couple essentials

>>> import pycpg.sdk
>>> import pycpg.util as util

Initialize the client.

>>> sdk = pycpg.sdk.from_local_account("https://console.us1.crashplan.com", "john.doe", "password")

or alternatively

>>> sdk = pycpg.sdk.from_jwt_provider("https://console.us1.crashplan.com", jwt_provider_function)

Get and print your user information.

>>> response = sdk.users.get_current()
>>> util.print_response(response)

You should see something like the following:

{
    "username": "john.doe",
    "orgName": "ACME Organization",
    "userId": 123456,
    "emailPromo": true,
    "licenses": [],
    "modificationDate": "2018-08-29T15:32:56.995-05:00",
    "blocked": false,
    "usernameIsAnEmail": true,
    "userUid": "1234567890abcdef",
    "userExtRef": null,
    "email": "john.doe@acme.com",
    "status": "Active",
    "localAuthenticationOnly": false,
    "orgUid": "123456789123456789",
    "passwordReset": true,
    "active": true,
    "creationDate": "2012-01-16T11:25:43.545-06:00",
    "orgType": "BUSINESS",
    "firstName": "John",
    "lastName": "Doe",
    "notes": null,
    "orgId": 123456,
    "quotaInBytes": -1,
    "invited": false
}

Configuration

There are a few default settings that affect the behavior of the client.

Name Description Default
verify_ssl_certs Controls whether the SDK verifies the server's certificate.
Possible values: True, False, or a path to a CA bundle to use.
True
proxies Dictionary mapping protocol or protocol and hostname to the URL of the proxy.
See the Requests library's documentation on proxies for more info.
None
debug.level Controls log level logging.NOTSET
debug.logger Controls logger used logging.Logger with StreamHandler sending to sys.stderr
items_per_page Controls how many items are retrieved per request for methods that loops over several "pages" of items in order to collect them all. 500

To override these settings, import pycpg.settings and override values as necessary before creating the client. For example, to disable certificate validation in a dev environment:

import pycpg.sdk
import pycpg.settings as settings
import logging

settings.verify_ssl_certs = False

# customize logging
custom_logger = logging.getLogger("my_app")
handler = logging.FileHandler("my_app.log")
custom_logger.addHandler(handler)
settings.debug.logger = custom_logger
settings.debug.level = logging.DEBUG

sdk = pycpg.sdk.from_local_account("https://console.us1.crashplan.com", "my_username", "my_password")

Usage

The SDK object opens availability to APIs across the CrashPlan environment, including storage nodes.

import pycpg.sdk

sdk = pycpg.sdk.from_local_account("https://console.us1.crashplan.com", "my_username", "my_password")

# clients are organized by feature groups and accessible under the sdk object

# get information about the current user.
current_user = sdk.users.get_current()

# page through all devices available to this user.
for device_page in sdk.devices.get_all():
    for device in device_page["computers"]:
        print(device)

# page through all orgs available to this user.
for org_page in sdk.orgs.get_all():
    for org in org_page["orgs"]:
        print(org)

# save a copy of a file from an archive this user has access to into the current working directory.
stream_response = sdk.archive.stream_from_backup("/full/path/to/file.txt", "1234567890")
with open("/path/to/my/file", 'wb') as f:
    for chunk in stream_response.iter_content(chunk_size=128):
        if chunk:
            f.write(chunk)

## Additional Resources

For complete documentation on the CrashPlan web API that backs this SDK, here are some helpful resources:

- [Introduction to the CrashPlan API](https://support.crashplan.com/hc/en-us/articles/9057001723917--CrashPlan-API-syntax-and-usage)
- [CrashPlan API documentation viewers](https://support.crashplan.com/hc/en-us/articles/9057096803469--CrashPlan-API-documentation-viewer-reference)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pycpg-1.0.3.tar.gz (65.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pycpg-1.0.3-py3-none-any.whl (59.4 kB view details)

Uploaded Python 3

File details

Details for the file pycpg-1.0.3.tar.gz.

File metadata

  • Download URL: pycpg-1.0.3.tar.gz
  • Upload date:
  • Size: 65.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.11

File hashes

Hashes for pycpg-1.0.3.tar.gz
Algorithm Hash digest
SHA256 66702cec42cf8d76dde865e5526b81761d916651b4d7c282ab407ed44953605f
MD5 b2d0ade08aad5b04bd27327ebd4480a4
BLAKE2b-256 0ad84009409b4be9db6f575163eca5c61fc9287adc5d09894fc094df19912512

See more details on using hashes here.

File details

Details for the file pycpg-1.0.3-py3-none-any.whl.

File metadata

  • Download URL: pycpg-1.0.3-py3-none-any.whl
  • Upload date:
  • Size: 59.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.11

File hashes

Hashes for pycpg-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 c13c856a8f583f0661fbe95e6d2b6b1b60cdabbd2a5a7ddd34ee66055ef898b4
MD5 898bb2f162d4e959f8ebf724e109d0e0
BLAKE2b-256 a4cd7c0a2092d2d90b8e74a947f16f8436e2919168b934b787f44e0c513c3c14

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page