I added a jabber support to my python bot by importing the xmppy library. However calling "import xmpp" attracts a few warnings:
/usr/lib/python2.6/site-packages/xmpp/auth.py:24: DeprecationWarning: the sha module is deprecated; use the hashlib module instead import sha,base64,random,dispatcher,re /usr/lib/python2.6/site-packages/xmpp/auth.py:26: DeprecationWarning: the md5 module is deprecated; use hashlib instead import md5 it will be nice to fix this...
I thought I would fix this by unzipping the egg, fixing the module imports and rezipping it. After my operating however python does not recognize the library. I am getting *module not found* error. What is the **real** way of fixing an egg?