Guido van Rossum | f30bec7 | 1997-08-29 22:30:45 +0000 | [diff] [blame] | 1 | """Append module search paths for third-party packages to sys.path. |
Guido van Rossum | e57c96e | 1996-08-17 19:56:26 +0000 | [diff] [blame] | 2 | |
Guido van Rossum | f30bec7 | 1997-08-29 22:30:45 +0000 | [diff] [blame] | 3 | **************************************************************** |
| 4 | * This module is automatically imported during initialization. * |
| 5 | **************************************************************** |
Guido van Rossum | e57c96e | 1996-08-17 19:56:26 +0000 | [diff] [blame] | 6 | |
Guido van Rossum | f30bec7 | 1997-08-29 22:30:45 +0000 | [diff] [blame] | 7 | In earlier versions of Python (up to 1.5a3), scripts or modules that |
| 8 | needed to use site-specific modules would place ``import site'' |
| 9 | somewhere near the top of their code. Because of the automatic |
| 10 | import, this is no longer necessary (but code that does it still |
| 11 | works). |
Guido van Rossum | e57c96e | 1996-08-17 19:56:26 +0000 | [diff] [blame] | 12 | |
Guido van Rossum | f30bec7 | 1997-08-29 22:30:45 +0000 | [diff] [blame] | 13 | This will append site-specific paths to to the module search path. It |
| 14 | starts with sys.prefix and sys.exec_prefix (if different) and appends |
| 15 | lib/python<version>/packages. The resulting directory, if it exists, |
| 16 | is added to sys.path, and also inspected for path configuration files. |
Guido van Rossum | e57c96e | 1996-08-17 19:56:26 +0000 | [diff] [blame] | 17 | |
Guido van Rossum | f30bec7 | 1997-08-29 22:30:45 +0000 | [diff] [blame] | 18 | A path configuration file is a file whose name has the form |
| 19 | <package>.pth; its contents are additional directories (one per line) |
| 20 | to be added to sys.path. Non-existing directories (or |
| 21 | non-directories) are never added to sys.path; no directory is added to |
| 22 | sys.path more than once. Blank lines and lines beginning with |
| 23 | \code{#} are skipped. |
Guido van Rossum | e57c96e | 1996-08-17 19:56:26 +0000 | [diff] [blame] | 24 | |
Guido van Rossum | f30bec7 | 1997-08-29 22:30:45 +0000 | [diff] [blame] | 25 | For example, suppose sys.prefix and sys.exec_prefix are set to |
| 26 | /usr/local and there is a directory /usr/local/python1.5/packages with |
| 27 | three subdirectories, foo, bar and spam, and two path configuration |
| 28 | files, foo.pth and bar.pth. Assume foo.pth contains the following: |
| 29 | |
| 30 | # foo package configuration |
| 31 | foo |
| 32 | bar |
| 33 | bletch |
| 34 | |
| 35 | and bar.pth contains: |
| 36 | |
| 37 | # bar package configuration |
| 38 | bar |
| 39 | |
| 40 | Then the following directories are added to sys.path, in this order: |
| 41 | |
| 42 | /usr/local/lib/python1.5/packages/bar |
| 43 | /usr/local/lib/python1.5/packages/foo |
| 44 | |
| 45 | Note that bletch is omitted because it doesn't exist; bar precedes foo |
| 46 | because bar.pth comes alphabetically before foo.pth; and spam is |
| 47 | omitted because it is not mentioned in either path configuration file. |
Guido van Rossum | e57c96e | 1996-08-17 19:56:26 +0000 | [diff] [blame] | 48 | |
| 49 | After these path manipulations, an attempt is made to import a module |
Guido van Rossum | f30bec7 | 1997-08-29 22:30:45 +0000 | [diff] [blame] | 50 | named sitecustomize, which can perform arbitrary additional |
| 51 | site-specific customizations. If this import fails with an |
| 52 | ImportError exception, it is silently ignored. |
Guido van Rossum | e57c96e | 1996-08-17 19:56:26 +0000 | [diff] [blame] | 53 | |
Guido van Rossum | f30bec7 | 1997-08-29 22:30:45 +0000 | [diff] [blame] | 54 | Note that for some non-Unix systems, sys.prefix and sys.exec_prefix |
| 55 | are empty, and then the path manipulations are skipped; however the |
| 56 | import of sitecustomize is still attempted. |
Guido van Rossum | e57c96e | 1996-08-17 19:56:26 +0000 | [diff] [blame] | 57 | |
Guido van Rossum | e57c96e | 1996-08-17 19:56:26 +0000 | [diff] [blame] | 58 | """ |
| 59 | |
| 60 | import sys, os |
| 61 | |
Guido van Rossum | f30bec7 | 1997-08-29 22:30:45 +0000 | [diff] [blame] | 62 | def addsitedir(sitedir): |
| 63 | if sitedir not in sys.path: |
| 64 | sys.path.append(sitedir) # Add path component |
| 65 | try: |
| 66 | names = os.listdir(sitedir) |
| 67 | except os.error: |
| 68 | return |
| 69 | names = map(os.path.normcase, names) |
| 70 | names.sort() |
| 71 | for name in names: |
| 72 | if name[-4:] == ".pth": |
| 73 | addpackage(sitedir, name) |
| 74 | |
| 75 | def addpackage(sitedir, name): |
| 76 | fullname = os.path.join(sitedir, name) |
| 77 | try: |
| 78 | f = open(fullname) |
| 79 | except IOError: |
| 80 | return |
| 81 | while 1: |
| 82 | dir = f.readline() |
| 83 | if not dir: |
| 84 | break |
| 85 | if dir[0] == '#': |
| 86 | continue |
| 87 | if dir[-1] == '\n': |
| 88 | dir = dir[:-1] |
| 89 | dir = os.path.join(sitedir, dir) |
| 90 | if dir not in sys.path and os.path.exists(dir): |
| 91 | sys.path.append(dir) |
| 92 | |
| 93 | prefixes = [sys.prefix] |
| 94 | if sys.exec_prefix != sys.prefix: |
| 95 | prefixes.append(sys.exec_prefix) |
| 96 | for prefix in prefixes: |
Guido van Rossum | e57c96e | 1996-08-17 19:56:26 +0000 | [diff] [blame] | 97 | if prefix: |
Guido van Rossum | f30bec7 | 1997-08-29 22:30:45 +0000 | [diff] [blame] | 98 | if sys.platform[:3] in ('win', 'mac'): |
| 99 | sitedir = prefix |
| 100 | else: |
| 101 | sitedir = os.path.join(prefix, |
| 102 | "lib", |
| 103 | "python" + sys.version[:3], |
| 104 | "packages") |
| 105 | if os.path.isdir(sitedir): |
| 106 | addsitedir(sitedir) |
Guido van Rossum | e57c96e | 1996-08-17 19:56:26 +0000 | [diff] [blame] | 107 | |
| 108 | try: |
| 109 | import sitecustomize # Run arbitrary site specific code |
| 110 | except ImportError: |
| 111 | pass # No site customization module |
Guido van Rossum | f30bec7 | 1997-08-29 22:30:45 +0000 | [diff] [blame] | 112 | |
| 113 | def _test(): |
| 114 | print "sys.path = [" |
| 115 | for dir in sys.path: |
| 116 | print " %s," % `dir` |
| 117 | print "]" |
| 118 | |
| 119 | if __name__ == '__main__': |
| 120 | _test() |