Skip to main content

Globus Online Transfer API client library

Project description

This package contains a client library for the Globus Online Transfer API.

For detailed documentation of the Transfer API, see https://transfer.api.globusonline.org

Installation

If you downloaded the source from github, simply run:

python setup.py install

There is also a package on PyPI with the latest stable version; it can be installed with easy_install or pip:

easy_install globusonline-transfer-api-client

Usage

Basic usage:

from globusonline.transfer import api_client

api = api_client.TransferAPIClient(username="myusername",
                                cert_file="/path/to/client/credential",
                                key_file="/path/to/client/credential")
status_code, status_message, data = api.task_list()

See the globusonline/transfer/api_client/examples directory for more complete examples. If you installed from PyPI, this will be somewhere in your Python path:

python -c "from globusonline.transfer import api_client; print api_client.__path__"

One of the best ways to learn the library is to run an interactive interpreter with an instance of the client. The module provides a shortcut for doing this:

python -i -m globusonline.transfer.api_client.main USERNAME -p
>>> status_code, status_message, data = api.task_list()
>>> dir(api) # get a list of all available methods

replace USERNAME with your Globus Online username, and you will be prompted for your password. This form of authentication should not be used in production systems, but is useful for development and testing.

Changlog

0.10.12

  • Fix password prompt authentication to work with current globusonline website.

  • Support keyword args to Transfer constructor; can be used to pass encrypt_data, verify_checksum, and any options added in the future, without requiring a client library update.

  • Support Bearer auth header for passing the auth token in addition to the cookie option.

0.10.11

  • Fix Delete when not passing a deadline argument.

  • Improve interactive script by importing Transfer and Delete.

  • Add interpret_globs option to Delete.

  • Fix set_submit_type in ActivationRequirementList to properly update the mapping.

0.10.10

  • Include CAs in the package; the server_ca_file parameter (and the -C command line arg) is no longer required.

  • Alternate delegate_proxy activation implementation using a custom C program called mkproxy instead of M2Crypto. See mkproxy/README.markdown for details. mkproxy is the preferred implementations, so if both the executable and M2Crypto are installed, mkproxy is used.

  • Moved examples to package data, so they are included in the PyPI package.

0.10.9

  • Add https proxy support, using the HTTPS_PROXY environment variable. This has been tested in 2.6.6 and 2.7, and does not work in 2.6.1 (because the tunnel features was added in the middle of the 2.6.X cycle). Other versions > 2.6.1 may also work, but this has not been tested. Thanks to Brett Viren for this feature!

  • If you have both your key and certificate in the same file, you don’t have to pass it to both -c and -k when running the examples and interactive client. Just pass one of them, and it will assume the file contains both.

  • Added some basic usage docs to examples/delegate_proxy_activate.py

  • Fix example.py breakage when printing GC endpoints.

  • Import readline in main.py, for more convenient interactive testing.

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

globusonline-transfer-api-client-0.10.12.tar.gz (31.6 kB view hashes)

Uploaded Source

Supported by

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