Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | |
| 2 | :mod:`modulefinder` --- Find modules used by a script |
| 3 | ===================================================== |
| 4 | |
| 5 | .. sectionauthor:: A.M. Kuchling <amk@amk.ca> |
| 6 | |
| 7 | |
| 8 | .. module:: modulefinder |
| 9 | :synopsis: Find modules used by a script. |
| 10 | |
| 11 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 12 | This module provides a :class:`ModuleFinder` class that can be used to determine |
| 13 | the set of modules imported by a script. ``modulefinder.py`` can also be run as |
| 14 | a script, giving the filename of a Python script as its argument, after which a |
| 15 | report of the imported modules will be printed. |
| 16 | |
| 17 | |
| 18 | .. function:: AddPackagePath(pkg_name, path) |
| 19 | |
| 20 | Record that the package named *pkg_name* can be found in the specified *path*. |
| 21 | |
| 22 | |
| 23 | .. function:: ReplacePackage(oldname, newname) |
| 24 | |
| 25 | Allows specifying that the module named *oldname* is in fact the package named |
| 26 | *newname*. The most common usage would be to handle how the :mod:`_xmlplus` |
| 27 | package replaces the :mod:`xml` package. |
| 28 | |
| 29 | |
| 30 | .. class:: ModuleFinder([path=None, debug=0, excludes=[], replace_paths=[]]) |
| 31 | |
| 32 | This class provides :meth:`run_script` and :meth:`report` methods to determine |
| 33 | the set of modules imported by a script. *path* can be a list of directories to |
| 34 | search for modules; if not specified, ``sys.path`` is used. *debug* sets the |
Neal Norwitz | 752abd0 | 2008-05-13 04:55:24 +0000 | [diff] [blame] | 35 | debugging level; higher values make the class print debugging messages about |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 36 | what it's doing. *excludes* is a list of module names to exclude from the |
| 37 | analysis. *replace_paths* is a list of ``(oldpath, newpath)`` tuples that will |
| 38 | be replaced in module paths. |
| 39 | |
| 40 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 41 | .. method:: report() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 42 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 43 | Print a report to standard output that lists the modules imported by the |
| 44 | script and their paths, as well as modules that are missing or seem to be |
| 45 | missing. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 46 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 47 | .. method:: run_script(pathname) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 48 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 49 | Analyze the contents of the *pathname* file, which must contain Python |
| 50 | code. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 51 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 52 | .. attribute:: modules |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 53 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 54 | A dictionary mapping module names to modules. See |
| 55 | :ref:`modulefinder-example` |
Christian Heimes | d3eb5a15 | 2008-02-24 00:38:49 +0000 | [diff] [blame] | 56 | |
| 57 | |
| 58 | .. _modulefinder-example: |
| 59 | |
| 60 | Example usage of :class:`ModuleFinder` |
| 61 | -------------------------------------- |
| 62 | |
| 63 | The script that is going to get analyzed later on (bacon.py):: |
| 64 | |
| 65 | import re, itertools |
| 66 | |
| 67 | try: |
| 68 | import baconhameggs |
| 69 | except ImportError: |
| 70 | pass |
| 71 | |
| 72 | try: |
| 73 | import guido.python.ham |
| 74 | except ImportError: |
| 75 | pass |
| 76 | |
| 77 | |
| 78 | The script that will output the report of bacon.py:: |
| 79 | |
| 80 | from modulefinder import ModuleFinder |
| 81 | |
| 82 | finder = ModuleFinder() |
| 83 | finder.run_script('bacon.py') |
| 84 | |
Neal Norwitz | 752abd0 | 2008-05-13 04:55:24 +0000 | [diff] [blame] | 85 | print('Loaded modules:') |
| 86 | for name, mod in finder.modules.items(): |
| 87 | print('%s: ' % name, end='') |
| 88 | print(','.join(mod.globalnames.keys()[:3])) |
Christian Heimes | d3eb5a15 | 2008-02-24 00:38:49 +0000 | [diff] [blame] | 89 | |
Neal Norwitz | 752abd0 | 2008-05-13 04:55:24 +0000 | [diff] [blame] | 90 | print('-'*50) |
| 91 | print('Modules not imported:') |
| 92 | print('\n'.join(finder.badmodules.keys())) |
Christian Heimes | d3eb5a15 | 2008-02-24 00:38:49 +0000 | [diff] [blame] | 93 | |
| 94 | Sample output (may vary depending on the architecture):: |
| 95 | |
| 96 | Loaded modules: |
| 97 | _types: |
Alexandre Vassalotti | f7fa63d | 2008-05-11 08:55:36 +0000 | [diff] [blame] | 98 | copyreg: _inverted_registry,_slotnames,__all__ |
Christian Heimes | d3eb5a15 | 2008-02-24 00:38:49 +0000 | [diff] [blame] | 99 | sre_compile: isstring,_sre,_optimize_unicode |
| 100 | _sre: |
| 101 | sre_constants: REPEAT_ONE,makedict,AT_END_LINE |
| 102 | sys: |
| 103 | re: __module__,finditer,_expand |
| 104 | itertools: |
| 105 | __main__: re,itertools,baconhameggs |
| 106 | sre_parse: __getslice__,_PATTERNENDERS,SRE_FLAG_UNICODE |
| 107 | array: |
| 108 | types: __module__,IntType,TypeType |
| 109 | --------------------------------------------------- |
| 110 | Modules not imported: |
| 111 | guido.python.ham |
| 112 | baconhameggs |
| 113 | |
| 114 | |