Include pycrypto python library into python egg
up vote
0
down vote
favorite
I have written python code (using pycrypto library)to encrypt data using generate_date_key (AWS KMS API). I have created egg from that file and want to use this egg in databricks.
But after importing egg i am still getting error at line.
import Crypto.Cipher.AES
I guess pycrypto library is not getting included in egg.PFB setup.py
from setuptools import setup, find_packages
setup(
name = "DataKeyEncriptionLib",
version = "0.1",
packages = find_packages(),
install_requires=[
'pycrypto'
],
zip_safe=False,
)
Could anyone provide some inputs here.
Thanks in Advance
python pycrypto
add a comment |
up vote
0
down vote
favorite
I have written python code (using pycrypto library)to encrypt data using generate_date_key (AWS KMS API). I have created egg from that file and want to use this egg in databricks.
But after importing egg i am still getting error at line.
import Crypto.Cipher.AES
I guess pycrypto library is not getting included in egg.PFB setup.py
from setuptools import setup, find_packages
setup(
name = "DataKeyEncriptionLib",
version = "0.1",
packages = find_packages(),
install_requires=[
'pycrypto'
],
zip_safe=False,
)
Could anyone provide some inputs here.
Thanks in Advance
python pycrypto
I am using Python2.7 version here.As pycrypto is not supported in higher versions
– user1746589
yesterday
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have written python code (using pycrypto library)to encrypt data using generate_date_key (AWS KMS API). I have created egg from that file and want to use this egg in databricks.
But after importing egg i am still getting error at line.
import Crypto.Cipher.AES
I guess pycrypto library is not getting included in egg.PFB setup.py
from setuptools import setup, find_packages
setup(
name = "DataKeyEncriptionLib",
version = "0.1",
packages = find_packages(),
install_requires=[
'pycrypto'
],
zip_safe=False,
)
Could anyone provide some inputs here.
Thanks in Advance
python pycrypto
I have written python code (using pycrypto library)to encrypt data using generate_date_key (AWS KMS API). I have created egg from that file and want to use this egg in databricks.
But after importing egg i am still getting error at line.
import Crypto.Cipher.AES
I guess pycrypto library is not getting included in egg.PFB setup.py
from setuptools import setup, find_packages
setup(
name = "DataKeyEncriptionLib",
version = "0.1",
packages = find_packages(),
install_requires=[
'pycrypto'
],
zip_safe=False,
)
Could anyone provide some inputs here.
Thanks in Advance
python pycrypto
python pycrypto
asked yesterday
user1746589
62
62
I am using Python2.7 version here.As pycrypto is not supported in higher versions
– user1746589
yesterday
add a comment |
I am using Python2.7 version here.As pycrypto is not supported in higher versions
– user1746589
yesterday
I am using Python2.7 version here.As pycrypto is not supported in higher versions
– user1746589
yesterday
I am using Python2.7 version here.As pycrypto is not supported in higher versions
– user1746589
yesterday
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53372577%2finclude-pycrypto-python-library-into-python-egg%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I am using Python2.7 version here.As pycrypto is not supported in higher versions
– user1746589
yesterday