Python wrapper around Qlik Engine JSON API
Project description
Qlik Engine API Client
Python wrapper around Qlik Engine JSON API
Forked from jhettler/pyqlikengine
Requirements
- Python 3.6+
- websocket-client>=0.47.0
Installation
pip install qe-api-client
Connecting to Qlik Sense Enterprise Server
You need to export the Qlik Sense certificates in PEM format from the Qlik Sense Enterprise server to a local folder in order to authenticate on the server.
from qe_api_client.engine import QixEngine
url = 'qlik-1.ad.xxx.xxx'
user_directory = 'UserDomainToQlikLogin'
user_id = 'sense'
ca_certs = 'qlik_certs/qlik-1_root.pem'
certfile = 'qlik_certs/qlik-1_client.pem'
keyfile = 'qlik_certs/qlik-1_client_key.pem'
qixe = QixEngine(url=url, user_directory=user_directory, user_id=user_id, ca_certs=ca_certs, certfile=certfile,
keyfile=keyfile)
# print all apps in Qlik Server
print(qixe.ega.get_doc_list())
Connecting to Qlik Sense Desktop
You need to start your Qlik Sense Desktop client on your local PC.
from qe_api_client.engine import QixEngine
url = 'ws://localhost:4848/app'
qixe = QixEngine(url=url)
# print all apps in Qlik Server
print(qixe.ega.get_doc_list())
Examples of usage
Please click on this link to find examples of usage of this client.
API reference
Please click on this link for full API reference documentation .
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file qe_api_client-2.4.0.tar.gz.
File metadata
- Download URL: qe_api_client-2.4.0.tar.gz
- Upload date:
- Size: 26.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c22d50da05cdaec25f6085c70dc807762a2921e210ff70b494e6310f6cf34ace
|
|
| MD5 |
8c77e79fbea47c5d6c61d726364f61d8
|
|
| BLAKE2b-256 |
dee0588afd1af3b87e756426b22f79dee255a59ac41add69f0e53525b02b7174
|
File details
Details for the file qe_api_client-2.4.0-py3-none-any.whl.
File metadata
- Download URL: qe_api_client-2.4.0-py3-none-any.whl
- Upload date:
- Size: 25.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79f1347e0bc46493410ccffc245d21133f7816c5a78cc4ab224615839a6ef603
|
|
| MD5 |
059169681794c393a4910028b0723d18
|
|
| BLAKE2b-256 |
0b6eb4d8fb8af36ee425fa92362c2d3d6fa5ce6aef30192640f3b910782b3870
|