<?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 Re: Error when setting Splunk version 8.0.3 to Python 3: &amp;quot;No module named 'OpenSSL'&amp;quot;. in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Error-when-setting-Splunk-version-8-0-3-to-Python-3-quot-No/m-p/502001#M85547</link>
    <description>&lt;P&gt;Hello @qtieu&lt;/P&gt;

&lt;P&gt;you can include all dependencies (pyOpenSSL etc.) in your app in the lib folder.&lt;/P&gt;</description>
    <pubDate>Sun, 24 May 2020 11:41:59 GMT</pubDate>
    <dc:creator>PavelP</dc:creator>
    <dc:date>2020-05-24T11:41:59Z</dc:date>
    <item>
      <title>Error when setting Splunk version 8.0.3 to Python 3: "No module named 'OpenSSL'".</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Error-when-setting-Splunk-version-8-0-3-to-Python-3-quot-No/m-p/501998#M85544</link>
      <description>&lt;P&gt;We have a custom python REST endpoint that uses the OpenSSL module for some crypto functions. Works fine when we run Splunk with the Python version set to Python 2 but fails with a &lt;CODE&gt;No module named 'OpenSSL'&lt;/CODE&gt; error when we set the version to Python 3. So it looks like the OpenSSL module is not included in Splunk's Python 3? Am I missing something? Are there any plans to add that?&lt;/P&gt;</description>
      <pubDate>Sun, 07 Jun 2020 01:23:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Error-when-setting-Splunk-version-8-0-3-to-Python-3-quot-No/m-p/501998#M85544</guid>
      <dc:creator>qtieu</dc:creator>
      <dc:date>2020-06-07T01:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: Error when setting Splunk version 8.0.3 to Python 3: "No module named 'OpenSSL'".</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Error-when-setting-Splunk-version-8-0-3-to-Python-3-quot-No/m-p/501999#M85545</link>
      <description>&lt;P&gt;sounds simple but have you tried the below&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;pip install pyOpenSSL --upgrade
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 May 2020 21:34:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Error-when-setting-Splunk-version-8-0-3-to-Python-3-quot-No/m-p/501999#M85545</guid>
      <dc:creator>Sfry1981</dc:creator>
      <dc:date>2020-05-21T21:34:13Z</dc:date>
    </item>
    <item>
      <title>Re: Error when setting Splunk version 8.0.3 to Python 3: "No module named 'OpenSSL'".</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Error-when-setting-Splunk-version-8-0-3-to-Python-3-quot-No/m-p/502000#M85546</link>
      <description>&lt;P&gt;Well that would upgrade it on the OS, but the python code in Splunk apps run in Splunk's separate python environment.  The other issue is that we're building an app that gets installed in customers' environments, not our own Splunk environment where we could just add/upgrade the python modules.&lt;/P&gt;

&lt;P&gt;It's just strange that Splunk would include OpenSSL in their python2 environment but not their python3 environment.  Especially since they will be ending support for python2 altogether in July.&lt;/P&gt;</description>
      <pubDate>Thu, 21 May 2020 22:11:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Error-when-setting-Splunk-version-8-0-3-to-Python-3-quot-No/m-p/502000#M85546</guid>
      <dc:creator>qtieu</dc:creator>
      <dc:date>2020-05-21T22:11:33Z</dc:date>
    </item>
    <item>
      <title>Re: Error when setting Splunk version 8.0.3 to Python 3: "No module named 'OpenSSL'".</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Error-when-setting-Splunk-version-8-0-3-to-Python-3-quot-No/m-p/502001#M85547</link>
      <description>&lt;P&gt;Hello @qtieu&lt;/P&gt;

&lt;P&gt;you can include all dependencies (pyOpenSSL etc.) in your app in the lib folder.&lt;/P&gt;</description>
      <pubDate>Sun, 24 May 2020 11:41:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Error-when-setting-Splunk-version-8-0-3-to-Python-3-quot-No/m-p/502001#M85547</guid>
      <dc:creator>PavelP</dc:creator>
      <dc:date>2020-05-24T11:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: Error when setting Splunk version 8.0.3 to Python 3: "No module named 'OpenSSL'".</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Error-when-setting-Splunk-version-8-0-3-to-Python-3-quot-No/m-p/502002#M85548</link>
      <description>&lt;P&gt;Yes I could do that. But (as you may already be aware) the thing about OpenSSL and other crypto libraries is that they're usually just a thin Python wrapper calling some native C code so the Python packages also include some platform-dependent libraries.  So including those would make our app platform-specific rather than just  letting Splunk itself deal with the platform-specific things.&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2020 16:47:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Error-when-setting-Splunk-version-8-0-3-to-Python-3-quot-No/m-p/502002#M85548</guid>
      <dc:creator>qtieu</dc:creator>
      <dc:date>2020-05-27T16:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: Error when setting Splunk version 8.0.3 to Python 3: "No module named 'OpenSSL'".</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Error-when-setting-Splunk-version-8-0-3-to-Python-3-quot-No/m-p/505243#M86094</link>
      <description>&lt;P&gt;I can't find a good example on how to do this, also wouldn't this require installing pyOpenSSL on the python3 included in Splunk?&amp;nbsp; I think there is more to it than a simple lib reference, but if you have an example that would be great&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jun 2020 18:35:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Error-when-setting-Splunk-version-8-0-3-to-Python-3-quot-No/m-p/505243#M86094</guid>
      <dc:creator>skhadem</dc:creator>
      <dc:date>2020-06-19T18:35:15Z</dc:date>
    </item>
  </channel>
</rss>

