Here's what I get:
>>> import whrandom
>>> whrandom
<module 'whrandom'>
>>> dir(whrandom)
['__builtins__', '__doc__', '__name__', '_inst', 'choice', 'randint', 'random',
'seed', 'uniform', 'whrandom']
>>> whrandom.whrandom
<class whrandom at 7aaf0>
>>>
if you want whrandom to be a function, you should say
>>> from whrandom import *
You have probably figured it out yourself by now :)
Hannu Krosing / hannu@estib.ee