blob: 876c0d1c881aa52566fb28e6dca096922cfb1b75 [file] [log] [blame]
Guido van Rossumf30bec71997-08-29 22:30:45 +00001"""Append module search paths for third-party packages to sys.path.
Guido van Rossume57c96e1996-08-17 19:56:26 +00002
Guido van Rossumf30bec71997-08-29 22:30:45 +00003****************************************************************
4* This module is automatically imported during initialization. *
5****************************************************************
Guido van Rossume57c96e1996-08-17 19:56:26 +00006
Guido van Rossumf30bec71997-08-29 22:30:45 +00007In earlier versions of Python (up to 1.5a3), scripts or modules that
8needed to use site-specific modules would place ``import site''
9somewhere near the top of their code. Because of the automatic
10import, this is no longer necessary (but code that does it still
11works).
Guido van Rossume57c96e1996-08-17 19:56:26 +000012
Guido van Rossum0d8fcb21998-01-13 18:32:40 +000013This will append site-specific paths to to the module search path. On
14Unix, it starts with sys.prefix and sys.exec_prefix (if different) and
15appends lib/python<version>/site-packages as well as lib/site-python.
16On other platforms (mainly Mac and Windows), it uses just sys.prefix
17(and sys.exec_prefix, if different, but this is unlikely). The
Guido van Rossum62b297b1997-09-08 02:14:09 +000018resulting directories, if they exist, are appended to sys.path, and
19also inspected for path configuration files.
Guido van Rossume57c96e1996-08-17 19:56:26 +000020
Guido van Rossumf30bec71997-08-29 22:30:45 +000021A path configuration file is a file whose name has the form
22<package>.pth; its contents are additional directories (one per line)
23to be added to sys.path. Non-existing directories (or
24non-directories) are never added to sys.path; no directory is added to
25sys.path more than once. Blank lines and lines beginning with
26\code{#} are skipped.
Guido van Rossume57c96e1996-08-17 19:56:26 +000027
Guido van Rossumf30bec71997-08-29 22:30:45 +000028For example, suppose sys.prefix and sys.exec_prefix are set to
Guido van Rossum62b297b1997-09-08 02:14:09 +000029/usr/local and there is a directory /usr/local/python1.5/site-packages
30with three subdirectories, foo, bar and spam, and two path
31configuration files, foo.pth and bar.pth. Assume foo.pth contains the
32following:
Guido van Rossumf30bec71997-08-29 22:30:45 +000033
34 # foo package configuration
35 foo
36 bar
37 bletch
38
39and bar.pth contains:
40
41 # bar package configuration
42 bar
43
44Then the following directories are added to sys.path, in this order:
45
Guido van Rossum62b297b1997-09-08 02:14:09 +000046 /usr/local/lib/python1.5/site-packages/bar
47 /usr/local/lib/python1.5/site-packages/foo
Guido van Rossumf30bec71997-08-29 22:30:45 +000048
49Note that bletch is omitted because it doesn't exist; bar precedes foo
50because bar.pth comes alphabetically before foo.pth; and spam is
51omitted because it is not mentioned in either path configuration file.
Guido van Rossume57c96e1996-08-17 19:56:26 +000052
53After these path manipulations, an attempt is made to import a module
Guido van Rossumf30bec71997-08-29 22:30:45 +000054named sitecustomize, which can perform arbitrary additional
55site-specific customizations. If this import fails with an
56ImportError exception, it is silently ignored.
Guido van Rossume57c96e1996-08-17 19:56:26 +000057
Guido van Rossume57c96e1996-08-17 19:56:26 +000058"""
59
60import sys, os
61
Guido van Rossumf30bec71997-08-29 22:30:45 +000062def 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
75def 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
93prefixes = [sys.prefix]
94if sys.exec_prefix != sys.prefix:
95 prefixes.append(sys.exec_prefix)
96for prefix in prefixes:
Guido van Rossume57c96e1996-08-17 19:56:26 +000097 if prefix:
Guido van Rossumdc5d07d1997-09-03 23:12:18 +000098 if os.sep == '/':
Guido van Rossumad87d3e1997-09-03 21:41:30 +000099 sitedirs = [os.path.join(prefix,
100 "lib",
101 "python" + sys.version[:3],
Guido van Rossum62b297b1997-09-08 02:14:09 +0000102 "site-packages"),
Guido van Rossumad87d3e1997-09-03 21:41:30 +0000103 os.path.join(prefix, "lib", "site-python")]
Guido van Rossumdc5d07d1997-09-03 23:12:18 +0000104 else:
105 sitedirs = [prefix]
Guido van Rossumad87d3e1997-09-03 21:41:30 +0000106 for sitedir in sitedirs:
107 if os.path.isdir(sitedir):
108 addsitedir(sitedir)
Guido van Rossume57c96e1996-08-17 19:56:26 +0000109
110try:
111 import sitecustomize # Run arbitrary site specific code
112except ImportError:
113 pass # No site customization module
Guido van Rossumf30bec71997-08-29 22:30:45 +0000114
115def _test():
116 print "sys.path = ["
117 for dir in sys.path:
118 print " %s," % `dir`
119 print "]"
120
121if __name__ == '__main__':
122 _test()