Metadata-Version: 2.1
Name: qsaas
Version: 1.0.5
Summary: A Python wrapper for the Qlik Sense Enterprise SaaS APIs.
Home-page: https://github.com/eapowertools/qsaas
Author: Daniel Pilla
Author-email: daniel.b.pilla@gmail.com
License: GPL-3.0
Download-URL: https://github.com/eapowertools/qsaas/archive/v1.0.5.tar.gz
Description: # qsaas
        A wrapper for the Qlik Sense Enterprise SaaS APIs.
        
        ### Intended audience
        Developers -- familiarity with the [Qlik Sense Enterprise APIs](https://qlik.dev/apis) is required.
        
        ### High-level benefits:
        1. Automatic pagination on GETs, returning all results.
        2. Ability to asynchronously make POSTs, PUTs, and PATCHs, where one can input the amount of threads you'd like (default is 10), dramatically decreasing processing time.
        3. Ease of establishing and managing connections to multiple tenants.
        4. Ability to connect to any API endpoint.
        
        # Table of Contents
        1. [Installation](#installation)
        2. [Configuration](#configuration)
        3. [Basic Usage](#basic-usage)
        4. [Advanced Usage](#advanced-usage)
        5. [Complete list of functions](#complete-list-of-functions)
        6. [Additional Notes](#additional-notes)
        
        # Installation
        ```
        pip install qsaas
        ```
        
        #### Dependencies (auto-installed by pip):
        ```
        requests
        aiohttp
        asyncio
        ```
        # Configuration
        To import qsaas, as qsaas only currently has one class, `Tenant`, the simplest way is:
        ```
        from qsaas.qsaas import Tenant
        ```
        
        From there, one can instantiate a new `Tenant` object by executing
        ```
        q = Tenant(<args>)
        ```
        
        ### Option A
        If connecting locally, the simplest way can be to use a json file for each tenant, as these files can be securely stored locally. The file must be a valid json file with the following structure:
        ```
        {
            "api_key": "<API_KEY>",
            "tenant_fqdn": "<TENANT>.<REGION>.qlikcloud.com",
            "tenant_id": "<TENANT_ID>"
        }
        ```
        When creating a new `Tenant` object then, the named param `config` can be used as follows (in this case, the file name is "config.json":
        ```
        q = Tenant(config="config.json")
        ```
        
        ### Option B
        If it's preferred to feed in the api_key, tenant_fqdn, and tenant_id in a different manner, one can instead execute:
        ```
        q = Tenant(api_key=<API_KEY>, tenant=<TENANT_FQDN>, tenant_id=<TENANT_ID>)
        ```
        
        # Basic Usage
        #### Get all users from a tenant and print their IDs
        ```
        users = q.get('users')
        print([user['id'] for user in users)
        ```
        #### Get a specific user from a tenant
        ```
        user = q.get('users', params={"subject":"QLIK-POC\dpi"})
        ```
        #### Get all apps from a tenant and print their names
        ```
        apps = q.get('items', params={"resourceType":"app"})
        for app in apps:
            print(app['name'])
        ```
        #### Get all spaces from a tenant
        ```
        spaces = q.get('spaces')
        ```
        #### Create a new user
        ```
        body = {
            "tenantId": q.tenant_id,
            "subject": 'WORKSHOP\\Qlik1',
            "name": 'Qlik1',
            "email": 'Qlik1@workshop.com',
            "status": "active"
        }
        q.post('users', body)
        ```
        #### Publish an application
        ```
        app_id = <APP_ID>
        space_id = <SPACE_ID>
        q.post('apps/' + app_id + '/publish', json.dumps({"spaceId": space_id}))
        ```
        #### Change the owner of an application
        ```
        app_id = <APP_ID>
        user_id = <USER_ID>
        q.put('apps/' + app_id + '/owner', json.dumps({"ownerId": user_id}))
        ```
        #### Import an application
        _Note:_ Use '\n' for spaces in app names.
        ```
        with open('<NAME>.qvf', 'rb') as f:
            data = f.read()
        app = q.post('apps/import', data, params={"name": "Test\nApp"})
        ```
        
        # Advanced Usage
        #### Asynchronously import multiple apps
        _Note:_ The default threading is 10 at a time--to modify this, add the named param `chunks=x`, where x is an integer. Do not make this integer too high to avoid rate limiting.
        ```
        payloads = []
        for app in ['app1', 'app2', 'app3']:
            with open(app + '.qvf', 'rb') as f:
                apps.append(f.read())
        q.async_post('apps/import', payloads=payloads)
        ```
        #### Asynchronously delete apps that have the name "delete_me"
        _Note:_ This process currently requires deleting both from the `apps` and `items` endpoints. The default threading is 10 at a time--to modify this, add the named param `chunks=x`, where x is an integer. Do not make this integer too high to avoid rate limiting.
        ```
        items = q.get('items', params={"resourceType": "app"})
        delete_items = [item for item in items if item['name'] == 'delete_me']
        delete_dict = {}
        delete_dict['items'] = [item['id'] for item in delete_items]
        delete_dict['apps'] = [item['resourceId'] for item in delete_items]
        for e in delete_dict:
            q.async_delete(e, ids=delete_dict[e])
        ```
        #### Asychronously add users
        _Note:_ The default threading is 10 at a time--to modify this, add the named param `chunks=x`, where x is an integer. Do not make this integer too high to avoid rate limiting.
        ```
        payloads = []
        for i in range(10):
            user_subject = 'WORKSHOP\\Qlik' + str(i+1)
            user_name = 'Qlik' + str(i+1)
            user_email = 'Qlik' + str(i+1) + '@workshop.com'
            body = {
                "tenantId": q.tenant_id,
                "subject": user_subject,
                "name": user_name,
                "email": user_email,
                "status": "active"
            }
            payloads.append(body)
        q.async_post('users', payloads=payloads)
        ```
        #### Asynchronously publish applications
        _Note:_ The default threading is 10 at a time--to modify this, add the named param `chunks=x`, where x is an integer. Do not make this integer too high to avoid rate limiting.
        ```
        app_ids = ['<APP_ID>', '<APP_ID>']
        space_ids = ['<SPACE_ID>', '<SPACE_ID>']
        payloads = []
        for space_id in space_ids:
            payloads.append(json.dumps({"spaceId": space_id}))
        q.async_post('apps/_/publish', replace_ids=app_ids,
                     replace_char='_', payloads=payloads)
        ```
        #### Asynchronously copy applications and assign them to new owners
        _Note:_ This is the only "custom" style function in all of qsaas, due to the fact that it has hardcoded endpoints and has an multi-step process--as it can copy applications and then assign those applications ot new owners in one go. The default threading is 10 at a time--to modify this, add the named param `chunks=x`, where x is an integer. Do not make this integer too high to avoid rate limiting.
        **Copy app and assign ownership to new users**
        ```
        q.async_app_copy('<GUID>',users=['<UserId-1>','<UserId-2>'])
        ```
        **Simply copy an app 10 times, without assigning new ownership**
        ```
        q.async_app_copy('<GUID>',copies=10)
        ```
        
        # Complete list of functions
        - `q.get()`
        - `q.post()`
        - `q.put()`
        - `q.patch()`
        - `q.delete()`
        - `q.async_post()`
        - `q.async_put()`
        - `q.async_patch()`
        - `q.async_app_copy()` *only custom function
        
        For each function, one can always refer to the docstring for a helpful description, and most provide examples. For instance, `help(q.get)` will output:
        ```
            Description
            --------------------
            GETs and paginates all results. Takes optional params.
        
            Mandatory parameters
            --------------------
            endpoint (str), exclude api/{version}
        
            Optional parameters
            --------------------
            params (dict)
        
            Example Usage
            --------------------
            Example 1:
                get('users')
        
                This will return all users.
        
            Example 2:
                get('items', params={"resourceType":"app"})
        
                This will return all apps from items.
        ```
        
        # Additional Notes
        #### API Documentation
        It is highly encouraged to review the API documentation at [the qlik.dev portal](https://qlik.dev/apis). As this wrapper does not have wrapped Qlik functions (aside from the `async_app_copy` function), it is integral to know the API appropriate endpoints to call.
        
        #### Support
        This project is built and maintained by Daniel Pilla, a Principal Analytics Platform Architect at Qlik. This project is however not supported by Qlik, and is only supported through Daniel.
        
Keywords: Qlik,API,REST,Sense,QSAAS,QSESAAS
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.5
Description-Content-Type: text/markdown
