Metadata-Version: 2.1
Name: qlikconnect
Version: 1.0.2
Summary: A Python library to interact with Qliksense.
Home-page: https://github.com/001ayushdabral/qlikconnect
Author: Ayush Dabral
Author-email: ayushdabral88@gmail.com
License: UNKNOWN
Description: qlikconnect
        -------------
        qlikconnect is the python library used to interact with Qliksense.It uses qlik engine API to connect with Qliksense through webocket. This module can be use to do things like fetch qlik charts data, evaluate your expression through this and many more.
        
        Installation
        -------------
        
        Installation is pretty straightforward using **pip** :
        ```
        pip install qlikconnect
        ```
        ----------
        Example
        -------------
        After installing the library, import **SenseConnect** class as below:<br>
        For **Localhost Qliksense Desktop :**
        ```
        from qlikconnect import SenseConnect
        sc = SenseConnect()
        ```
        For **Enterprise **, certificate details will be required:
        ```
        from qlikconnect import SenseConnect
        sc = SenseConnect(domain ='domain_name',
        				port='port_number',
        				userdirectory='userdirectory',
        				userid='userid',
        				certPath='folder/path/of/certificates') 
        ```
        Certificates also required named 'root.pem', 'client.pem' and 'client_key.pem' which can be exported from qmc.<br>
        Also you can get the port(4747 by default), userdirectory and userid from qmc.
        
        ----------
        Use Case
        -------------
        > - **To get the app details :**
        > sc.get_list_of_apps(appID)
        > - **To get last refreshed timestamp of an app :**
        > sc.get_last_updated_status(appname)
        > - **To evaluate an expression from an app :**
        > sc.evaluate_expression(appname, expression,e_o_d=0)
        > - **To export the data from charts to excel :**
        > sc.export_data(appname, chartname)
        
        ----------
        Requirement
        -------------
        ```
        > websocket_client
        > python 3 (3.6 recommended)
        ```
Keywords: qlik,qliksense,sense,qlikconnect
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
