Collecting list of module dependencies

2007-01-01 Thread David Pratt
Hi. Is anyone aware of any code to create a list of dependent modules for a python module. Ideally am looking for something with a method to create a unique list of imported modules that excludes imports from the module being analyzed. Many thanks. Regards, David --

Re: Collecting list of module dependencies

2007-01-01 Thread skip
David Hi. Is anyone aware of any code to create a list of dependent David modules for a python module. modulefinder: http://docs.python.org/lib/module-modulefinder.html Added to Python in 2.3. Skip -- http://mail.python.org/mailman/listinfo/python-list

Re: Collecting list of module dependencies

2007-01-01 Thread David Pratt
Hi skip. Many thanks for this. Exactly what I need :-) Regards, David [EMAIL PROTECTED] wrote: David Hi. Is anyone aware of any code to create a list of dependent David modules for a python module. modulefinder: http://docs.python.org/lib/module-modulefinder.html Added to Python