<?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 Saving csv file as qvd using Python in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Saving-csv-file-as-qvd-using-Python/m-p/1928549#M76452</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I have to save the cleaned csv file directly from python script to a qvd.&lt;/P&gt;
&lt;P&gt;The csv file can be transformed from Qlik ,however user requires it from python itself&lt;/P&gt;
&lt;P&gt;This is the code used to convert file to csv in python.&lt;/P&gt;
&lt;P&gt;I want to store this final_dataframe file as qvd in python itself.&lt;/P&gt;
&lt;P&gt;df_final.to_csv(r'D:\pythontoqlik\custom import files\final_dataframe.csv')&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 10 May 2022 11:48:44 GMT</pubDate>
    <dc:creator>Iwin</dc:creator>
    <dc:date>2022-05-10T11:48:44Z</dc:date>
    <item>
      <title>Saving csv file as qvd using Python</title>
      <link>https://community.qlik.com/t5/App-Development/Saving-csv-file-as-qvd-using-Python/m-p/1928549#M76452</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I have to save the cleaned csv file directly from python script to a qvd.&lt;/P&gt;
&lt;P&gt;The csv file can be transformed from Qlik ,however user requires it from python itself&lt;/P&gt;
&lt;P&gt;This is the code used to convert file to csv in python.&lt;/P&gt;
&lt;P&gt;I want to store this final_dataframe file as qvd in python itself.&lt;/P&gt;
&lt;P&gt;df_final.to_csv(r'D:\pythontoqlik\custom import files\final_dataframe.csv')&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 11:48:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Saving-csv-file-as-qvd-using-Python/m-p/1928549#M76452</guid>
      <dc:creator>Iwin</dc:creator>
      <dc:date>2022-05-10T11:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: Saving csv file as qvd using Python</title>
      <link>https://community.qlik.com/t5/App-Development/Saving-csv-file-as-qvd-using-Python/m-p/1928574#M76455</link>
      <description>&lt;P&gt;AFAIK it's not possible - only Qlik could store data as a qvd because it's a special file-format.&lt;/P&gt;
&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 12:41:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Saving-csv-file-as-qvd-using-Python/m-p/1928574#M76455</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2022-05-10T12:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: Saving csv file as qvd using Python</title>
      <link>https://community.qlik.com/t5/App-Development/Saving-csv-file-as-qvd-using-Python/m-p/2534888#M108464</link>
      <description>&lt;P&gt;&lt;SPAN&gt;it is possible, to store data into QVD format using Python, you can utilize the&amp;nbsp;PyQvd&amp;nbsp;library.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;This library provides functionalities to interact with Qlik View Data (QVD) files.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Install using pip&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;pip install PyQvd&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Storing Data to QVD&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import pandas as pd
from pyqvd import QvdTable

# Create a sample Pandas DataFrame
data = {
'Column1': [1, 2, 3],
'Column2': ['A', 'B', 'C'],
'Column3': [True, False, True]
}
df = pd.DataFrame(data)

# Convert the Pandas DataFrame to a QvdTable object
qvd_table = QvdTable.from_pandas(df)

# Store the QvdTable object to a QVD file
qvd_table.to_qvd('output.qvd')

print("Data successfully stored to output.qvd")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jay&lt;/P&gt;</description>
      <pubDate>Fri, 31 Oct 2025 04:08:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Saving-csv-file-as-qvd-using-Python/m-p/2534888#M108464</guid>
      <dc:creator>jknjob_65</dc:creator>
      <dc:date>2025-10-31T04:08:04Z</dc:date>
    </item>
  </channel>
</rss>

