I need to use M2Crypto in my code. I downloaded the library as zip file from: https://github.com/martinpaljak/M2Crypto I unzipped the file. Inside the zipped file, I found folder named: M2Crypto, I copied it, and paste it in the same directory where my code .py file resides.
I added this line
from M2Crypto import RSA, X509
But I am getting this error:
import __m2crypto ImportError: No module named '__m2crypto'
Can you help me with the right way to import external library to python code? I am using windows system and I type the code using notepad++ so please, consider this in the answer.
EDIT: I use python 3.4