| optikalmouse | see if you can import zlib on your own |
| lilltiger | dagnachew: locate zlib.so /usr/lib/python2.5/lib-dynload/zlib.so << should be there |
| dagnachew | lilltiger, /usr/lib/python2.4/lib-dynload/zlib.so /usr/lib/python2.5/lib-dynload/zlib.so |
| vicz | anyone else having problems with sqlite3? I'm getting : sqlite3: symbol lookup error: sqlite3: undefined symbol: sqlite3_io_trace |
| barebones | Does anyone know of a python module for interfacing with gpg? I've found this http://py-gnupg.sourceforge.net/, but it hasn't had any development in about 4 years |
| lilltiger | how strange |
| optikalmouse | barebones, are you sure you want to interface with GPG? |
| vicz | ah found the problem. never mind. |
| barebones | optikalmouse: what do you mean? |
| vicz | it was picking up a different shared library in /usr/local/lib...... |
| barebones | I'd like to use gpg to encrypt and decrypt files |
| lilltiger | then exec(gpg) |
| optikalmouse | ... he wants to use PGP crypto GPG is a program that uses OpenPGP |
| wingot | optikalmouse: I fail to see the problem? |
| optikalmouse | wingot, gpg requires an install? |
| wingot | yes |
| optikalmouse | it's like using exec("zlib") instead of importing the zlib module and using that in python. |
| wingot | Ohh right When I saw "interface with GPG" I was thinking module |
| lilltiger | optikalmouse: exec is prob the better option when the module hasent been upgraded for 4 years |
| wingot | lilltiger: Nope. The best oiption is to upgrade the module ;) |
| barebones | the module still works, I tried it out I just was looking to see if theres something that's still being devloped |
| lilltiger | the module might have security issues |
| dagnachew | lilltiger,, I added /usr/lib/python2.5/lib-dynload/zlib.so to my PYTHONPATH like this lilltiger, export PYTHONPATH=$PYTHONPATAH:/usr/lib/python2.5/lib-dynload/ lilltiger, same error |
| optikalmouse | http://www.amk.ca/python/code/crypto that's what you want to use barebones it has the public key crypto that gpg uses "The sender uses PGP encryption to create a digital signature for the message with either the RSA or DSA signature algorithms." and lucky you, that module supports both RSA and DSA. so use that. |
| barebones | cool thanks |
| optikalmouse | welcome |