Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to extract QVD data using python

Is there any way to extract data from QVD file using python script.

**sorry i never worked on qlikview but we have a requirement to extract data from qlikview pertaining to some tool we are building.

Thanks a million in advance.

14 Replies
mar_disdier
Contributor
Contributor

Hello @thi_pham 

 

Did you find a solution to read qvd files with Qliksense ? 

Thank you.

Marion

thi_pham
Creator III
Creator III

Hello @mar_disdier , I have no solution yet 😞

The python script above works with qlik view environment only.

mar_disdier
Contributor
Contributor

Too bad @thi_pham   😞 But thank you for letting me know!

fran_perea
Contributor II
Contributor II

This works better than the solution given:

 

https://pypi.org/project/qvd/

 

It´s easier

Surendra_Kakani1
Contributor
Contributor

pip install qvd
from qvd import qvd_reader
df = qvd_reader.read('test.qvd')
print(df)...