Skip to main content

Python client for Qlik Sense Repository Service API.

Project description

qrs-api-client (Qlik Sense Repository API Client)

Python client for Qlik Sense Repository Service API.

Forked from clintcarr/qrspy

Requirements

  • Python 3.6+
  • requests>=2.32.3
  • requests_ntlm>=1.2.0
  • python-dotenv>=1.0.0

Installation

pip install qrs-api-client

Configuration

You can optionally put the authentication data into an .env file. Just create it in your project folder and initialize the variables listed below.

CERT_PATH="qlik_certs/client.pem"
KEY_PATH="qlik_certs/client_key.pem"
ROOT_CERT_PATH="qlik_certs/root.pem"
SERVER_NAME="<server name>"
SERVER_PORT=4242
USER_ID="<DOMAIN>\\<user_id>"
PASSWORD="<insert password>"

Connecting to Qlik Sense Enterprise Server using certificates

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.

Authentication without .env file

from qrs_api_client.client import QRSClient
from qrs_api_client.auth import AuthManager

# Inserts certificates into the authentication manager
auth_manager = AuthManager(
    cert_path="<path_to_certificates>/client.pem",
    key_path="<path_to_certificates>/client_key.pem",
    root_cert_path="<path_to_certificates>/root.pem")

# Authenticates on the enterprise server
client = QRSClient(server_name="<server_name>", server_port=4242, auth_manager=auth_manager,
                   auth_method="certificate", verify_ssl=True)

# Calls the API
api_desc_post = client.get("about/api/description", "extended=false&method=POST")
if api_desc_post:
    print(api_desc_post)
else:
    print("API request error.")

Authentication with .env file

from qrs_api_client.client import QRSClient
from dotenv import load_dotenv
import os

# Loads environment variables from .env file.
load_dotenv()

# Authenticates on the enterprise server (Cert paths are called from the .env file)
client = QRSClient(server_name=os.getenv("SERVER_NAME"), server_port=os.getenv("SERVER_PORT"),
                   auth_method="certificate", verify_ssl=True)

# Calls the API
api_desc_post = client.get("about/api/description", "extended=false&method=POST")
if api_desc_post:
    print(api_desc_post)
else:
    print("API request error.")

Connecting to Qlik Sense Enterprise Server using NTLM

Authentication without .env file

from qrs_api_client.client import QRSClient
from qrs_api_client.auth import AuthManager

# Inserts credentials into the authentication manager
auth_manager = AuthManager(user_id="<DOMAIN>\\<user_id>", password="<password>",
                           root_cert_path="<path_to_certificates>/root.pem")

# Authenticates on the enterprise server
client = QRSClient(server_name="<server_name>", server_port=443, auth_manager=auth_manager,
                   auth_method="ntlm", verify_ssl=False)

# Calls the API
api_desc_post = client.get("about/api/description", "extended=false&method=POST")
if api_desc_post:
    print(api_desc_post)
else:
    print("API request error.")

Authentication with .env file

from qrs_api_client.client import QRSClient

# Authenticates on the enterprise server
client = QRSClient(server_name="<server_name>", server_port=443, auth_method="ntlm", verify_ssl=False)

# Calls the API
api_desc_post = client.get("about/api/description", "extended=false&method=POST")
if api_desc_post:
    print(api_desc_post)
else:
    print("API request error.")

Examples of usage

Please click on this link to find examples of usage of this client.

Documentation

Please click on this link for full API reference documentation.

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

qrs_api_client-2.1.0.tar.gz (22.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

qrs_api_client-2.1.0-py3-none-any.whl (22.0 kB view details)

Uploaded Python 3

File details

Details for the file qrs_api_client-2.1.0.tar.gz.

File metadata

  • Download URL: qrs_api_client-2.1.0.tar.gz
  • Upload date:
  • Size: 22.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.9.21

File hashes

Hashes for qrs_api_client-2.1.0.tar.gz
Algorithm Hash digest
SHA256 042f8c5ea6471be6c766ff003bb8b4f26f906a1c80fd945720d674048b94fdb0
MD5 21549ff0ca055d8b3889288736bc1751
BLAKE2b-256 c674dab4ec4ffe2de721e868f44ff9b7dd2c6f963042e831b7221f971ee83f7e

See more details on using hashes here.

File details

Details for the file qrs_api_client-2.1.0-py3-none-any.whl.

File metadata

  • Download URL: qrs_api_client-2.1.0-py3-none-any.whl
  • Upload date:
  • Size: 22.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.9.21

File hashes

Hashes for qrs_api_client-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d6b5542de41b5ab6fe9c16b79baecc616db2f5d5af844275c45d5d6fd53d184d
MD5 d61abbb5fb0d44e751c90d923348a333
BLAKE2b-256 888f3ba330dc0236b13b763ab393bbbb886e98e8aad0251f3a85c752947fdba5

See more details on using hashes here.

Supported by

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