Skip to main content

A library for reading Qlik Sense .qvd file format from Python, written in Rust.

Project description

Read Qlik Sense .qvd files 🛠

CI pipeline

A python library for reading Qlik Sense .qvd file format, written in Rust. Files can be read to DataFrame or dictionary.

Install

Install from PyPi https://pypi.org/project/qvd/

pip install qvd

Usage

from qvd import qvd_reader

df = qvd_reader.read('test.qvd')
print(df)

example

Developing

Create a virtual env https://docs.python-guide.org/dev/virtualenvs/ and activate it.

python3 -m venv venv

Then install dev dependencies:

pip install pandas maturin

Afterwards, run

maturin develop --release

to install the generated python lib to the virtual env.

Test

To run the tests, you can use these commands:

cargo test  # runs all Rust unit tests
pytest test_qvd_reader.py  # runs all Python tests

QVD File Structure

A QVD file is split into 3 parts; XML Metdata, Symbols table and the bit stuffed binary indexes.

XML Metadata

This section is at the top of the file and is in human readable XML. This section contains metadata about the file in gneneral such as table name, number of records, size of records as well as data about individual fields including field name, length offset in symbol table.

Symbol table

Directly after the xml section is the symbol table. This is a table of every unique value contained within each column. The columns are in the order described in the metadata fields section. In the metadata we can find the byte offset from the start of the symbols section for each column. Symbol types cannot be determined from the metadata and are instead determined by a flag byte preceding each symbol. These types are:

  • 1 - 4 byte signed int (u32) - little endiand
  • 2 - 8 byte signed float (f64) - little endian
  • 4 - null terminated string
  • 5 - 4 bytes of junk follwed by a null terminated string representing an integer
  • 6 - 8 bytes of junk followed by a null terminated string representing a float

Binary Indexes

After the symbol table are the binary indexes that map to the symbols for each row. They are bit stuffed and reversed binary numbers that point to the index of the symbol in the symbols table for each field.

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

qvd-0.0.15.tar.gz (526.2 kB view hashes)

Uploaded Source

Built Distributions

qvd-0.0.15-cp312-none-win_amd64.whl (513.3 kB view hashes)

Uploaded CPython 3.12 Windows x86-64

qvd-0.0.15-cp312-cp312-manylinux_2_28_x86_64.whl (610.6 kB view hashes)

Uploaded CPython 3.12 manylinux: glibc 2.28+ x86-64

qvd-0.0.15-cp312-cp312-macosx_10_7_x86_64.whl (588.3 kB view hashes)

Uploaded CPython 3.12 macOS 10.7+ x86-64

qvd-0.0.15-cp311-none-win_amd64.whl (513.3 kB view hashes)

Uploaded CPython 3.11 Windows x86-64

qvd-0.0.15-cp311-cp311-manylinux_2_28_x86_64.whl (610.6 kB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.28+ x86-64

qvd-0.0.15-cp311-cp311-macosx_10_7_x86_64.whl (588.3 kB view hashes)

Uploaded CPython 3.11 macOS 10.7+ x86-64

qvd-0.0.15-cp310-none-win_amd64.whl (513.3 kB view hashes)

Uploaded CPython 3.10 Windows x86-64

qvd-0.0.15-cp310-cp310-manylinux_2_28_x86_64.whl (610.6 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.28+ x86-64

qvd-0.0.15-cp310-cp310-macosx_10_7_x86_64.whl (588.3 kB view hashes)

Uploaded CPython 3.10 macOS 10.7+ x86-64

qvd-0.0.15-cp39-none-win_amd64.whl (513.3 kB view hashes)

Uploaded CPython 3.9 Windows x86-64

qvd-0.0.15-cp39-cp39-manylinux_2_28_x86_64.whl (610.6 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.28+ x86-64

qvd-0.0.15-cp39-cp39-macosx_10_7_x86_64.whl (588.3 kB view hashes)

Uploaded CPython 3.9 macOS 10.7+ x86-64

qvd-0.0.15-cp38-none-win_amd64.whl (513.3 kB view hashes)

Uploaded CPython 3.8 Windows x86-64

qvd-0.0.15-cp38-cp38-manylinux_2_28_x86_64.whl (610.6 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.28+ x86-64

qvd-0.0.15-cp38-cp38-macosx_10_7_x86_64.whl (588.3 kB view hashes)

Uploaded CPython 3.8 macOS 10.7+ x86-64

qvd-0.0.15-cp37-none-win_amd64.whl (513.2 kB view hashes)

Uploaded CPython 3.7 Windows x86-64

qvd-0.0.15-cp37-cp37m-manylinux_2_28_x86_64.whl (610.6 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.28+ x86-64

qvd-0.0.15-cp37-cp37m-macosx_10_7_x86_64.whl (588.3 kB view hashes)

Uploaded CPython 3.7m macOS 10.7+ x86-64

qvd-0.0.15-cp36-cp36m-manylinux_2_28_x86_64.whl (611.0 kB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.28+ x86-64

qvd-0.0.15-cp36-cp36m-macosx_10_7_x86_64.whl (576.6 kB view hashes)

Uploaded CPython 3.6m macOS 10.7+ x86-64

Supported by

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