<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How to extract QVD data using python in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1398020#M818105</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there any way to extract data from QVD file using python script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**sorry i never worked on qlikview but we have a requirement to extract data from qlikview pertaining to some tool we are building.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a million in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator />
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>How to extract QVD data using python</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1398020#M818105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there any way to extract data from QVD file using python script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**sorry i never worked on qlikview but we have a requirement to extract data from qlikview pertaining to some tool we are building.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a million in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1398020#M818105</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract QVD data using python</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1398021#M818106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;QVD are native qlik readable file .....it has 3 parts &lt;/P&gt;&lt;UL&gt;&lt;LI&gt;XML header to describe the fields in the table, the layout of the subsequent information and other meta-data.&lt;/LI&gt;&lt;LI&gt;Symbol tables in a byte stuffed format.&lt;/LI&gt;&lt;LI&gt;Actual table data in a bit-stuffed format.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;As per I know you could extract the meta-data information not sure about the actual data &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2017 09:47:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1398021#M818106</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2017-08-29T09:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract QVD data using python</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1398022#M818107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prabhat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;given that QVD is a proprietary format, you're likely to run into difficulties. You might look instead into saving your data into QVX files, then reading those.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-2677"&gt;QlikView QVX File Format&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/message/92107#92107" title="https://community.qlik.com/message/92107#92107"&gt;https://community.qlik.com/message/92107#92107&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2017 09:53:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1398022#M818107</guid>
      <dc:creator>marcus_malinow</dc:creator>
      <dc:date>2017-08-29T09:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract QVD data using python</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1517154#M818108</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;&lt;PRE&gt;def qvd_to_pandas(src_qvd):

    from tempfile import TemporaryDirectory
    from pathlib import Path

    from win32com.client import Dispatch
    import pandas as pd

    with TemporaryDirectory(dir='.') as tmp_dir:
        tmp_csv = Path(tmp_dir).absolute() / 'tmp.csv'
        tmp_qvw = Path(tmp_dir).absolute() / 'tmp.qvw'

        script = f'''    
        ExportTable: REPLACE LOAD * FROM {Path(src_qvd).absolute()} (qvd);
        STORE ExportTable INTO {tmp_csv} (txt);
        DROP TABLE ExportTable;
        '''

        qv = Dispatch('QlikTech.QlikView')
        active_doc = qv.CreateDoc()

        doc_properties = active_doc.GetProperties()
        doc_properties.script = doc_properties.script + script

        active_doc.SetProperties(doc_properties)
        active_doc.SaveAs(tmp_qvw)
        active_doc.ReloadEx(0, 1)

        active_doc.CloseDoc()
        qv.Quit()

        df = pd.read_csv(open(tmp_csv, encoding='utf8'), dtype=str)

    return df&lt;BR /&gt;&lt;BR /&gt;df = qvd_to_pandas('my_qvd_file.qvd')&lt;/PRE&gt;</description>
      <pubDate>Thu, 06 Dec 2018 07:46:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1517154#M818108</guid>
      <dc:creator>VasilyEvdokienko</dc:creator>
      <dc:date>2018-12-06T07:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract QVD data using python</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1532542#M818109</link>
      <description>&lt;P&gt;You should attribute when you copy &amp;amp; paste the code.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Source:&lt;/P&gt;&lt;P&gt;&lt;A href="https://stackoverflow.com/questions/46517656/import-qvd-file-into-jupyter-notebook-python2?rq=1" target="_blank"&gt;https://stackoverflow.com/questions/46517656/import-qvd-file-into-jupyter-notebook-python2?rq=1&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jan 2019 07:49:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1532542#M818109</guid>
      <dc:creator>IAMDV</dc:creator>
      <dc:date>2019-01-21T07:49:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract QVD data using python</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1532576#M818110</link>
      <description>Added attributes to my stackoverflow post. Thanks &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;</description>
      <pubDate>Mon, 21 Jan 2019 09:03:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1532576#M818110</guid>
      <dc:creator>VasilyEvdokienko</dc:creator>
      <dc:date>2019-01-21T09:03:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract QVD data using python</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1532625#M818111</link>
      <description>Lol! Nice situation to be in. I had a feeling that you are the same person. You see - I didn’t go too hard without knowing it. &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Does this only work on Windows OS? I tried on Mac OS and it doesn’t work.</description>
      <pubDate>Mon, 21 Jan 2019 10:40:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1532625#M818111</guid>
      <dc:creator>IAMDV</dc:creator>
      <dc:date>2019-01-21T10:40:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract QVD data using python</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1532654#M818112</link>
      <description>Integrity matters &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;Yes, only works on Windows. For Mac the solution may be in &lt;A href="https://github.com/mattneub/appscript" target="_blank"&gt;https://github.com/mattneub/appscript&lt;/A&gt;</description>
      <pubDate>Mon, 21 Jan 2019 11:51:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1532654#M818112</guid>
      <dc:creator>VasilyEvdokienko</dc:creator>
      <dc:date>2019-01-21T11:51:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract QVD data using python</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1632834#M818113</link>
      <description>&lt;P&gt;I have an environment with Qlik sense only (no qlik view), how to make it work cause I always got error on the line:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Dispatch('QlikTech.QlikView')&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Oct 2019 07:20:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1632834#M818113</guid>
      <dc:creator>thi_pham</dc:creator>
      <dc:date>2019-10-09T07:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract QVD data using python</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1671716#M818114</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for this code, i tried to implement it and its working fine also but every time when its making communication, it opens Qlikview Desktop version for few seconds and close the same automatically.&lt;/P&gt;&lt;P&gt;Can we block that pop up?&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2020 10:26:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1671716#M818114</guid>
      <dc:creator>ajbilimoria</dc:creator>
      <dc:date>2020-02-03T10:26:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract QVD data using python</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1720044#M818115</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/5747"&gt;@thi_pham&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you find a solution to read qvd files with Qliksense ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Marion&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jun 2020 14:51:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1720044#M818115</guid>
      <dc:creator>mar_disdier</dc:creator>
      <dc:date>2020-06-18T14:51:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract QVD data using python</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1720319#M818117</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/119848"&gt;@mar_disdier&lt;/a&gt;&amp;nbsp;, I have no solution yet &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The python script above works with qlik view environment only.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jun 2020 11:32:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1720319#M818117</guid>
      <dc:creator>thi_pham</dc:creator>
      <dc:date>2020-06-19T11:32:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract QVD data using python</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1720321#M818119</link>
      <description>&lt;P&gt;Too bad&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/5747"&gt;@thi_pham&lt;/a&gt;&amp;nbsp; &amp;nbsp;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; But thank you for letting me know!&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jun 2020 11:36:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/1720321#M818119</guid>
      <dc:creator>mar_disdier</dc:creator>
      <dc:date>2020-06-19T11:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract QVD data using python</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/2033727#M1222467</link>
      <description>&lt;P&gt;This works better than the solution given:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://pypi.org/project/qvd/" target="_blank"&gt;https://pypi.org/project/qvd/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It´s easier&lt;/P&gt;</description>
      <pubDate>Fri, 03 Feb 2023 08:42:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/2033727#M1222467</guid>
      <dc:creator>fran_perea</dc:creator>
      <dc:date>2023-02-03T08:42:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract QVD data using python</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/2418750#M1225304</link>
      <description>&lt;DIV&gt;pip install qvd&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN class=" code_blu"&gt;from&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;qvd&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=" code_blu"&gt;import&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;qvd_reader&lt;/DIV&gt;
&lt;DIV&gt;df = qvd_reader.read(&lt;SPAN class=" code_red"&gt;'test.qvd'&lt;/SPAN&gt;)&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN class=" code_blu"&gt;print&lt;/SPAN&gt;(df)...&lt;/DIV&gt;</description>
      <pubDate>Wed, 14 Feb 2024 11:57:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-extract-QVD-data-using-python/m-p/2418750#M1225304</guid>
      <dc:creator>Surendra_Kakani1</dc:creator>
      <dc:date>2024-02-14T11:57:21Z</dc:date>
    </item>
  </channel>
</rss>

