[Python] Ottenere un elenco dei metodi di un modulo
Lawrence Oluyede
l.oluyede a gmail.com
Ven 27 Mar 2009 12:23:30 CET
2009/3/27 Alessandro Ronchi <alessandro.ronchi a soasi.com>:
> č possibile, dato un modulo python, avere una funzione che restituisca
> l'elenco dei nomi dei metodi che sono contenuti?
non testato (ne` provato)
import modulo
import inspect
print [name for name in dir(modulo) if inspect.ismodule(getattr(modulo, name))]
--
Lawrence Oluyede
[eng] http://oluyede.org - http://twitter.com/lawrenceoluyede
[ita] http://neropercaso.it - http://twitter.com/rhymes
Maggiori informazioni sulla lista
Python