Skip to main content

Gett API bindings

Project description

About

This library provides a binding to the REST API for the file sharing service Ge.tt. Please see the Ge.tt Developer’s Documentation for information on how to get an API key.

Installation

To install, use the standard python setup.py install or sudo pip install pygett

Documentation

Read the full documentation on ReadTheDocs.

Quick Usage

The API initializaton requires the following parameters to be present:

  • apikey: The API key assigned by Ge.tt for your application

  • email: The email address linked to an API key

  • password: The password linked to an API key

Example initialization:

from pygett import Gett

client = Gett(
        apikey = "apitest",
        email = "apitest@ge.tt",
        password = "secret"
        )

Getting a dict of all shares:

shares = client.get_shares()
for file in shares['4ddfds'].files
    print file.filename

Getting a list of all shares:

shares = client.get_shares_list()
for share in shares:
    for file in share.files:
        print share.sharename + "   " + file.filename + "   " + file.size

Getting a specific share:

share = client.get_share("4ddfds")

Getting a specific file:

file = client.get_file("4ddfds", 0)

Uploading a file:

file = client.upload_file(
        filename = "test.rst",
        data = open("test.rst", "rb").read()
        )

print "File '%s' is now available at %s" % (file.filename, file.getturl)

Downloading file content:

file = client.get_file("4ddfds", 0)
buffer = file.contents()

License

MIT License

Copyright (c) 2011 Mark Allen

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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

pygett-1.0.2.tar.gz (9.7 kB view details)

Uploaded Source

File details

Details for the file pygett-1.0.2.tar.gz.

File metadata

  • Download URL: pygett-1.0.2.tar.gz
  • Upload date:
  • Size: 9.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pygett-1.0.2.tar.gz
Algorithm Hash digest
SHA256 31f7431ba8f28e6caf66c2b0c112e0b5c8fa9c6a795d87657691efd4935fc689
MD5 e4ce21b1e78eee8b1dd5c5c13ef60d8e
BLAKE2b-256 434ebbf753ae46006788bd461fbf4fb0630637fee5458b32d35c4896a6ce828e

See more details on using hashes here.

Supported by

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