<?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>question Re: How i can ignore ssl certification on python? in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/How-i-can-ignore-ssl-certification-on-python/m-p/411656#M253115</link>
    <description>&lt;P&gt;You can bypass SSL verification in Python using:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import requests
response = requests.get('https://your-url.com', verify=False)&lt;/LI-CODE&gt;&lt;P&gt;However, disabling SSL verification is not recommended for production as it exposes you to security risks.&amp;nbsp;If you're facing a CERTIFICATE_VERIFY_FAILED error, it's better to fix the underlying certificate issue. Here's a detailed guide:&amp;nbsp;&lt;A href="https://sslinsights.com/fix-certificate-verify-failed-error-in-python/" target="_blank" rel="noopener"&gt;https://sslinsights.com/fix-certificate-verify-failed-error-in-python/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 21 Jul 2025 08:49:02 GMT</pubDate>
    <dc:creator>hardymervana</dc:creator>
    <dc:date>2025-07-21T08:49:02Z</dc:date>
    <item>
      <title>How i can ignore ssl certification on python?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-i-can-ignore-ssl-certification-on-python/m-p/330275#M230629</link>
      <description>&lt;P&gt;I am trying to run an example from the cloudera documentation site in python. I am getting ssl certificate error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;ssl.SSLError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:749)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Getting a certificate is not a solution to my problem. Can I ignore the certificate validation when accessing the api, similar to how it can be done through a regular request?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;import requests
res = requests.get(url, auth=(login, pass), timeout= 1000000, verify= False)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;import cm_client

cm_client.configuration.username = login
cm_client.configuration.password = pass

api_url = api_host + ':' + port + '/api/' + api_version
api_client = cm_client.ApiClient(api_url)
cluster_api_instance = cm_client.ClustersResourceApi(api_client)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Nov 2021 06:03:58 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-i-can-ignore-ssl-certification-on-python/m-p/330275#M230629</guid>
      <dc:creator>mananasaly</dc:creator>
      <dc:date>2021-11-16T06:03:58Z</dc:date>
    </item>
    <item>
      <title>Re: How i can ignore ssl certification on python?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-i-can-ignore-ssl-certification-on-python/m-p/384055#M245238</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/93565"&gt;@mananasaly&lt;/a&gt;&amp;nbsp;refer below stackoverflow discussion, this may help you to bypass ssl certificate in python&lt;/P&gt;&lt;P&gt;&lt;A href="https://stackoverflow.com/questions/15445981/how-do-i-disable-the-security-certificate-check-in-python-requests" target="_blank"&gt;https://stackoverflow.com/questions/15445981/how-do-i-disable-the-security-certificate-check-in-python-requests&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Let us know if this helps&lt;/P&gt;</description>
      <pubDate>Tue, 27 Feb 2024 20:01:02 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-i-can-ignore-ssl-certification-on-python/m-p/384055#M245238</guid>
      <dc:creator>jAnshula</dc:creator>
      <dc:date>2024-02-27T20:01:02Z</dc:date>
    </item>
    <item>
      <title>Re: How i can ignore ssl certification on python?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-i-can-ignore-ssl-certification-on-python/m-p/406025#M252520</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/93565"&gt;@mananasaly&lt;/a&gt;,&amp;nbsp;the SSL certificate error in Python you are getting can occur due to&amp;nbsp;&lt;SPAN&gt;when making HTTPS requests using the requests module in Python. To solve the error, I found the reference guide from:-&amp;nbsp;&lt;A href="https://cheapsslweb.com/blog/ssl-certificate-verify-failed-error-in-python/" target="_self"&gt;https://cheapsslweb.com/blog/ssl-certificate-verify-failed-error-in-python/&lt;/A&gt;. You can refer to it, maybe it will be helpful to solve the error.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I hope it helps!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Apr 2025 05:20:01 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-i-can-ignore-ssl-certification-on-python/m-p/406025#M252520</guid>
      <dc:creator>lyraharry</dc:creator>
      <dc:date>2025-04-14T05:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: How i can ignore ssl certification on python?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-i-can-ignore-ssl-certification-on-python/m-p/411655#M253114</link>
      <description>&lt;P&gt;You can bypass SSL verification in Python using:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;import requests
response = requests.get('https://your-url.com', verify=False)&lt;/LI-CODE&gt;&lt;P&gt;However, disabling SSL verification is not recommended for production as it exposes you to security risks.&lt;BR /&gt;&lt;BR /&gt;If you're facing a CERTIFICATE_VERIFY_FAILED error, it's better to fix the underlying certificate issue. Here's a detailed guide:&amp;nbsp;&lt;A href="https://sslinsights.com/fix-certificate-verify-failed-error-in-python/" target="_self"&gt;https://sslinsights.com/fix-certificate-verify-failed-error-in-python/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope it helps!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jul 2025 08:44:46 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-i-can-ignore-ssl-certification-on-python/m-p/411655#M253114</guid>
      <dc:creator>hardymervana</dc:creator>
      <dc:date>2025-07-21T08:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: How i can ignore ssl certification on python?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-i-can-ignore-ssl-certification-on-python/m-p/411656#M253115</link>
      <description>&lt;P&gt;You can bypass SSL verification in Python using:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import requests
response = requests.get('https://your-url.com', verify=False)&lt;/LI-CODE&gt;&lt;P&gt;However, disabling SSL verification is not recommended for production as it exposes you to security risks.&amp;nbsp;If you're facing a CERTIFICATE_VERIFY_FAILED error, it's better to fix the underlying certificate issue. Here's a detailed guide:&amp;nbsp;&lt;A href="https://sslinsights.com/fix-certificate-verify-failed-error-in-python/" target="_blank" rel="noopener"&gt;https://sslinsights.com/fix-certificate-verify-failed-error-in-python/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jul 2025 08:49:02 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-i-can-ignore-ssl-certification-on-python/m-p/411656#M253115</guid>
      <dc:creator>hardymervana</dc:creator>
      <dc:date>2025-07-21T08:49:02Z</dc:date>
    </item>
  </channel>
</rss>

