> Hiii! Im new here.
> Im testing pylast and works! But i cant read the documentation because
> when i run the command in the python interpreter: help(pylast) the
> shell output this:
>
>>>> help(pylast)
> Traceback (most recent call last):
> File "<stdin>", line 1, in <module>
> NameError: name 'pylast' is not defined
>
> Anybody knows why?
It looks like you have not imported pylast correctly. Have you evaluated
a line like:
import pylast
?
Dan