Metadata-Version: 2.1
Name: kloudless
Version: 2.0.0
Summary: Python library for the Kloudless API
Home-page: https://github.com/kloudless/kloudless-python/
Author: Kloudless
Author-email: hello@kloudless.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: requests (>=1.0)
Requires-Dist: python-dateutil
Requires-Dist: six

Python library for the Kloudless API
====================================

Python library for the [Kloudless API](https://developers.kloudless.com).

**You need to sign up and create an application first before using this SDK.**

Table of Contents
-----------------

*   [Requirements](#requirements)
*   [Installation](#installation)
*   [Getting Started](#getting-started)
*   [Making API Requests](#making-api-requests)
*   [Integrating OAuth Flow](#integrating-oauth-flow)
*   [Documentation](#documentation)

Requirements
-----------

Python 2.7 or Python 3.5+

Installation
------------

Install via pip:

```bash
pip install kloudless
```

Install from source:

```bash
git clone git://github.com/kloudless/kloudless-python
cd kloudless-python
python setup.py install
```

Getting Started
---------------

Most Kloudless API endpoints require connecting to an upstream service
account first. Start by **navigating to**
[API Explorer](https://developers.kloudless.com/api-explorer/) **and connecting
an account.**

![Get the Bearer Token](https://kloudless-static-assets.s3.amazonaws.com/p/platform/sdk/images/api-explorer-token.png)

After the account has been connected, copy the Bearer Token from the text box
and use it to initialize an Account object:

```python
from kloudless import Account
account = Account(token="YOUR_BEARER_TOKEN")
```

Making API Requests
-------------------

You can now make an API request with the account instance you've created.

### If Connecting to a Storage Service

```python
# retrieve folder contents
root_folder_contents = account.get('storage/folders/root/contents')
for resource in root_folder_contents:
    print(resource.data)

# download the first file in root_folder
for resource in root_folder_contents:
    if resource.data['type'] == 'file':
        filename = resource.data['name']
        response = resource.get('contents')
        with open(filename, 'wb') as f:
            f.write(response.content)
        break

# upload a file to root_folder
file_name = 'FILE_NAME_TO_UPLOAD'
headers = {
    'X-Kloudless-Metadata': json.dumps(
        {'parent_id': 'root', 'name': file_name}
    )
}
with open(file_name, 'rb') as f:
    file_resource = account.post('storage/files', data=f, headers=headers)
```

### If Connecting to a Calendar Service

```python
# retrieve primary calendar
calendar = account.get('cal/calendars/primary')
print('Primary Calendar: {}'.format(calendar.data['name']))

# iterate through events in first page with page_size equals 5
events = calendar.get('events?page_size=5')
for e in events:
    data = e.data
    print('{}: {}~{}'.format(data['name'], data['start'], data['end']))

# iterate thorough events in second page
next_page_events = events.get_next_page()
for e in next_page_events:
    data = e.data
    print('{}: {}~{}'.format(data['name'], data['start'], data['end']))

# create a new event on primary calendar
event = events.post(json={
    'start': '2019-01-01T12:30:00Z',
    'end': '2019-01-01T13:30:00Z',
    'name': 'Event test'}
)
```

Integrating OAuth Flow
----------------------

You can use the [Authenticator JS library](https://github.com/kloudless/authenticator.js)
to authenticate end-users via a pop-up and store the token server-side. 
Be sure to verify the token once it is transferred to your
server. See `kloudless.application.verify_token`.

An alternate approach is to use the OAuth Authorization Code grant flow to
redirect the end-user to Kloudless to connect their account to your app.

### OAuth Integration Demo server

`examples/demo_server.py` provides the server-side logic of the 3-legged OAuth
flow using helper methods from the Kloudless Python SDK. See 
`examples/README.md` for instructions on running the demo server.

### Python Django Sample code

Insert the following code into Django views under `views/` directory and
calling it via `urls.py`.

```python
from django.http import HttpResponseRedirect, HttpResponse
from django.conf import settings

from kloudless import get_authorization_url, get_token_from_code


def start_authorization_flow(request):
    """
    Redirect the user to start authorization flow.
    """
    url, state = get_authorization_url(app_id=settings.KLOUDLESS_APP_ID,
                                       redirect_uri=settings.KLOUDLESS_REDIRECT_URL,
                                       scope='any:normal.storage')

    request.session['authorization_state'] = state
    return HttpResponseRedirect(url)


def callback(request):
    """
    The endpoint for settings.KLOUDLESS_REDIRECT_URL.
    """
    params = request.GET.dict()
    token = get_token_from_code(app_id=settings.KLOUDLESS_APP_ID,
                                api_key=settings.KLOUDLESS_API_KEY,
                                orig_state=request.session['authorization_state'],
                                orig_redirect_uri=settings.KLOUDLESS_REDIRECT_URL,
                                **params)

    # store the token
    request.user.kloudless_token = token
    request.user.save()
    return HttpResponse('Account connects successfully.')
```

Documentation
-------------

Full documentation is hosted at
[Read the docs](https://kloudless.readthedocs.io/en/latest/).


