M2crypto: Python 2.7 Compatibility And Which Version Of Openssl To Use?
We've been using M2crypto with Python 2.6 for Windows (32-bit) for some time with great success. We used one of the user contributed setups to install M2crypto in our development e
Solution 1:
- Yes, it's compatible with Python 2.7, so you can freely upgrade if you have not already.
- Yes, here you have
bdist_wininst
,bdist_egg
andbdist
for M2Crypto 20.2 built for Python 2.7 with MSVS2008 by me, hope it will fit your needs. - No, you will get import error, as .pyd file (which is actually DLL) has
python26.dll
in it's import table, so this will not work. Of course, you can hack it and replacepython26
withpython27
, but that's too dirt and gives you no guarantee it will work all the time. - Version I uploaded for you works fine with OpenSSL 0.9.8o, haven't tested it with 1.0.0.
Post a Comment for "M2crypto: Python 2.7 Compatibility And Which Version Of Openssl To Use?"