<?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 Qlikview Data extraction Using Python in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Qlikview-Data-extraction-Using-Python/m-p/1777674#M1232351</link>
    <description>&lt;P&gt;i have a qlikview report &lt;STRONG&gt;&lt;A href="https://hkrtrainings.com/pega-certification-training" target="_blank" rel="noopener"&gt;pega&lt;/A&gt; &lt;/STRONG&gt;which is web based.I need to download data daily from that Web based Qlikview report.Normally its download in excel&lt;/P&gt;&lt;P&gt;is there any way i could download same report in Excel using Python.i want to automate my task using python.&lt;/P&gt;</description>
    <pubDate>Mon, 26 Jan 2026 16:26:21 GMT</pubDate>
    <dc:creator>soumyarani</dc:creator>
    <dc:date>2026-01-26T16:26:21Z</dc:date>
    <item>
      <title>Qlikview Data extraction Using Python</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Data-extraction-Using-Python/m-p/1777674#M1232351</link>
      <description>&lt;P&gt;i have a qlikview report &lt;STRONG&gt;&lt;A href="https://hkrtrainings.com/pega-certification-training" target="_blank" rel="noopener"&gt;pega&lt;/A&gt; &lt;/STRONG&gt;which is web based.I need to download data daily from that Web based Qlikview report.Normally its download in excel&lt;/P&gt;&lt;P&gt;is there any way i could download same report in Excel using Python.i want to automate my task using python.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jan 2026 16:26:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Data-extraction-Using-Python/m-p/1777674#M1232351</guid>
      <dc:creator>soumyarani</dc:creator>
      <dc:date>2026-01-26T16:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview Data extraction Using Python</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Data-extraction-Using-Python/m-p/2154999#M1232353</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hello Friend,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;it's possible to automate the task of downloading data from a web-based QlikView report using Python. You can achieve this by using libraries like &lt;/SPAN&gt;&lt;CODE&gt;requests&lt;/CODE&gt;&lt;SPAN&gt; for making HTTP requests and &lt;/SPAN&gt;&lt;CODE&gt;beautifulsoup&lt;/CODE&gt;&lt;SPAN&gt; or &lt;/SPAN&gt;&lt;CODE&gt;lxml&lt;/CODE&gt;&lt;SPAN&gt; for parsing HTML content.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Write a &lt;A href="https://www.kbstraining.com/python-job-support.php" target="_blank" rel="noopener"&gt;Python&lt;/A&gt; script using the &lt;CODE&gt;requests&lt;/CODE&gt; library to send HTTP requests to the QlikView server. You might need to include authentication (if required) and navigate to the page containing the report.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Use the below code&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;import requests&lt;/P&gt;
&lt;P&gt;# Replace these placeholders with the actual login credentials and report URL&lt;BR /&gt;login_url = '&lt;A href="https://your-qlikview.com/login" target="_blank"&gt;https://your-qlikview.com/login&lt;/A&gt;'&lt;BR /&gt;report_url = '&lt;A href="https://your-qlikview.com/report" target="_blank"&gt;https://your-qlikview.com/report&lt;/A&gt;'&lt;BR /&gt;username = 'your_username'&lt;BR /&gt;password = 'your_password'&lt;/P&gt;
&lt;P&gt;# Start a session and perform login&lt;BR /&gt;session = requests.Session()&lt;BR /&gt;login_data = {&lt;BR /&gt;'username': username,&lt;BR /&gt;'password': password&lt;BR /&gt;}&lt;BR /&gt;session.post(login_url, data=login_data)&lt;/P&gt;
&lt;P&gt;# Retrieve the report data (replace this with your report download logic)&lt;BR /&gt;report_response = session.get(report_url)&lt;/P&gt;
&lt;P&gt;# Save the downloaded Excel file&lt;BR /&gt;with open('report.xlsx', 'wb') as f:&lt;BR /&gt;f.write(report_response.content)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this may helps.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Dec 2023 10:45:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Data-extraction-Using-Python/m-p/2154999#M1232353</guid>
      <dc:creator>johnsonit</dc:creator>
      <dc:date>2023-12-20T10:45:15Z</dc:date>
    </item>
  </channel>
</rss>

