Metadata-Version: 2.1
Name: qlik_sense
Version: 0.2.0
Summary: This library is a python client for the Qlik Sense APIs
Home-page: https://github.com/mikealfare/qlik_sense
License: UNKNOWN
Keywords: QlikSense Qlik Sense
Author: Mike Alfare
Author-email: alfare@gmail.com
Requires-Python: >=3.7,<4
Description-Content-Type: text/markdown
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: requests >=2.22.0,<3.0
Requires-Dist: requests_ntlm >=1.1.0,<2.0
Requires-Dist: requests_negotiate_sspi >=0.5.2,<0.6
Requires-Dist: urllib3 >=1.25.6,<2.0
Requires-Dist: uuid >=1.30,<2.0
Requires-Dist: marshmallow >=3.2.1,<4.0
Requires-Dist: sphinx; extra == "doc"
Requires-Dist: sphinx-autodoc-typehints; extra == "doc"
Requires-Dist: sphinx_rtd_theme; extra == "doc"
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Provides-Extra: doc
Provides-Extra: test

# Qlik Sense

**This library is a python client for the Qlik Sense APIs**

---

# Overview

This library allows users to more easily work with Qlik Sense applications in a larger python workflow. While Qlik's
APIs could be used directly, this streamlines the process.

#### Disclaimer:

This library, and its maintainer, have no affiliation with QlikTech. Qlik support agreement does not cover
support for this application.

# Requirements

- Python 3.7+
- requests
- requests_ntlm
- requests_negotiate_sspi
- urllib3
- uuid
- marshmallow

# Installation

This package is hosted on PyPI:

```shell script
pip install qlik_sense
```

# Examples

Use this library to work with Qlik Sense apps:
```python

from qlik_sense import NTLMClient

qs = NTLMClient(host='url/to/qlik/sense/server')
app = qs.app.get_by_name_and_stream(app_name='My App', stream_name='My Stream')
qs.app.reload(app=app)
```

# Full Documentation

For the full documentation, please visit: https://qlik_sense.readthedocs.io/en/latest/

