SSLError in Requests when packaging as OS X .app

后端 未结 4 1447
傲寒
傲寒 2021-02-06 08:44

I\'m developing an application for OS X. The application involves communicating with a server through python-requests, using a secure connection.

I am able to run the p

相关标签:
4条回答
  • 2021-02-06 09:19

    Requests uses a bundle of ceritificates to verify a servers identity. This bundle is kept (it has to be) in an independent file. Normally requests ships with its own bundle, but if packaged into a single file the bundle is lost. You can ship a new bundle alongside your app or let requests use the systemwide certificate. (I don't know, where OS X keeps this file, but on my linux box its /etc/ssl/certs/ca-certificates.crt)

    To see, where requests expects the file you can do this:

    import requests
    print(requests.certs.where())
    

    To change the location, where requests looks for the bundle you can pass the verify-parameter with a string value:

    import requests
    requests.get("https://httpbin.org/", verify="path/to/your/bundle")
    

    If you don't want to pass the parameter every time, create a session and configure it to use your bundle:

    import requests
    s = requests.Session()
    s.verify = "path/to/your/bundle"
    s.get("https://httpbin.org")
    
    0 讨论(0)
  • 2021-02-06 09:23

    The previous accepted answer did not work for me - maybe the way requests works has changed.

    To resolve this I changed my setup.py options to include the certifi package where the certificate pem file lives:

    OPTIONS = {'argv_emulation': True,'packages': ['certifi']}
    

    Then added this to the python requests calls:

    is_py2app = hasattr(sys, "frozen")
    pem_path = "lib/python2.7/certifi/cacert.pem" if is_py2app else None 
    
    ...
    
    requests.get(..., verify=pem_path)
    

    This may be different on other Python versions.

    0 讨论(0)
  • 2021-02-06 09:24

    I ran into the same problem and had to distribute my application to users who may not have Python or the certifi package installed on their Mac. Drawing on inspirations from the answers here, I came up with the following solution.

    Step 1: Download a OpenSSL package from https://www.openssl.org/source/. Find /openssl-1.0.2n/certs/demo/ca-cert.pem and place it under the same directory as your Python program (for example main.py).

    Step 2: Create a setup.py as usual, but include ca-cert.pem in the DATA_FILES list. So your setup.py should look something like this:

    from setuptools import setup
    
    APP = ['main.py']
    DATA_FILES = ['ca-cert.pem']
    OPTIONS = {'argv_emulation': False}
    
    setup(
        app=APP,
        data_files=DATA_FILES,
        options={'py2app': OPTIONS},
        setup_requires=['py2app'],
    )
    

    Step 3: Use the verify parameter so requests will use the certificate file you provide.

    import requests
    requests.get("https://httpbin.org/", verify="ca-cert.pem")
    

    Alternatively, you can also create a session so that you don't have to specify verify every time.

    import requests
    s = requests.Session()
    s.verify = "ca-cert.pem"
    s.get("https://httpbin.org")
    

    Step 4: Package the application using py2app as usual. The resulting app should be able to run normally.

    python setup.py py2app
    
    0 讨论(0)
  • 2021-02-06 09:25

    The easiests workaround is to add an option for py2app to your setup.py file:

    setup(
       ...
       options={
          'py2app':{
              'packages': [ 'requests' ]
           }
       }
    )
    

    This includes the entire package into the application bundle, including the certificate bundle.

    I've filed an issue for this in my py2app tracker, a future version of py2app will include logic to detect the use of the request library and will copy the certificate bundle automaticly.

    0 讨论(0)
提交回复
热议问题