blob: bb1e672064ec4db794141d994686790e08c7d20e [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001
2:mod:`platform` --- Access to underlying platform's identifying data.
3======================================================================
4
5.. module:: platform
6 :synopsis: Retrieves as much platform identifying data as possible.
7.. moduleauthor:: Marc-Andre Lemburg <mal@egenix.com>
8.. sectionauthor:: Bjorn Pettersen <bpettersen@corp.fairisaac.com>
9
10
Georg Brandl116aa622007-08-15 14:28:22 +000011.. note::
12
13 Specific platforms listed alphabetically, with Linux included in the Unix
14 section.
15
16
17Cross Platform
18--------------
19
20
21.. function:: architecture(executable=sys.executable, bits='', linkage='')
22
23 Queries the given executable (defaults to the Python interpreter binary) for
24 various architecture information.
25
26 Returns a tuple ``(bits, linkage)`` which contain information about the bit
27 architecture and the linkage format used for the executable. Both values are
28 returned as strings.
29
30 Values that cannot be determined are returned as given by the parameter presets.
31 If bits is given as ``''``, the :cfunc:`sizeof(pointer)` (or
32 :cfunc:`sizeof(long)` on Python version < 1.5.2) is used as indicator for the
33 supported pointer size.
34
35 The function relies on the system's :file:`file` command to do the actual work.
36 This is available on most if not all Unix platforms and some non-Unix platforms
37 and then only if the executable points to the Python interpreter. Reasonable
38 defaults are used when the above needs are not met.
39
40
41.. function:: machine()
42
43 Returns the machine type, e.g. ``'i386'``. An empty string is returned if the
44 value cannot be determined.
45
46
47.. function:: node()
48
49 Returns the computer's network name (may not be fully qualified!). An empty
50 string is returned if the value cannot be determined.
51
52
53.. function:: platform(aliased=0, terse=0)
54
55 Returns a single string identifying the underlying platform with as much useful
56 information as possible.
57
58 The output is intended to be *human readable* rather than machine parseable. It
59 may look different on different platforms and this is intended.
60
61 If *aliased* is true, the function will use aliases for various platforms that
62 report system names which differ from their common names, for example SunOS will
63 be reported as Solaris. The :func:`system_alias` function is used to implement
64 this.
65
66 Setting *terse* to true causes the function to return only the absolute minimum
67 information needed to identify the platform.
68
69
70.. function:: processor()
71
72 Returns the (real) processor name, e.g. ``'amdk6'``.
73
74 An empty string is returned if the value cannot be determined. Note that many
75 platforms do not provide this information or simply return the same value as for
76 :func:`machine`. NetBSD does this.
77
78
79.. function:: python_build()
80
81 Returns a tuple ``(buildno, builddate)`` stating the Python build number and
82 date as strings.
83
84
85.. function:: python_compiler()
86
87 Returns a string identifying the compiler used for compiling Python.
88
89
90.. function:: python_branch()
91
92 Returns a string identifying the Python implementation SCM branch.
93
Georg Brandl116aa622007-08-15 14:28:22 +000094
95.. function:: python_implementation()
96
97 Returns a string identifying the Python implementation. Possible return values
98 are: 'CPython', 'IronPython', 'Jython'
99
Georg Brandl116aa622007-08-15 14:28:22 +0000100
101.. function:: python_revision()
102
103 Returns a string identifying the Python implementation SCM revision.
104
Georg Brandl116aa622007-08-15 14:28:22 +0000105
106.. function:: python_version()
107
108 Returns the Python version as string ``'major.minor.patchlevel'``
109
110 Note that unlike the Python ``sys.version``, the returned value will always
111 include the patchlevel (it defaults to 0).
112
113
114.. function:: python_version_tuple()
115
116 Returns the Python version as tuple ``(major, minor, patchlevel)`` of strings.
117
118 Note that unlike the Python ``sys.version``, the returned value will always
119 include the patchlevel (it defaults to ``'0'``).
120
121
122.. function:: release()
123
124 Returns the system's release, e.g. ``'2.2.0'`` or ``'NT'`` An empty string is
125 returned if the value cannot be determined.
126
127
128.. function:: system()
129
130 Returns the system/OS name, e.g. ``'Linux'``, ``'Windows'``, or ``'Java'``. An
131 empty string is returned if the value cannot be determined.
132
133
134.. function:: system_alias(system, release, version)
135
136 Returns ``(system, release, version)`` aliased to common marketing names used
137 for some systems. It also does some reordering of the information in some cases
138 where it would otherwise cause confusion.
139
140
141.. function:: version()
142
143 Returns the system's release version, e.g. ``'#3 on degas'``. An empty string is
144 returned if the value cannot be determined.
145
146
147.. function:: uname()
148
149 Fairly portable uname interface. Returns a tuple of strings ``(system, node,
150 release, version, machine, processor)`` identifying the underlying platform.
151
152 Note that unlike the :func:`os.uname` function this also returns possible
153 processor information as additional tuple entry.
154
155 Entries which cannot be determined are set to ``''``.
156
157
158Java Platform
159-------------
160
161
162.. function:: java_ver(release='', vendor='', vminfo=('','',''), osinfo=('','',''))
163
164 Version interface for JPython.
165
166 Returns a tuple ``(release, vendor, vminfo, osinfo)`` with *vminfo* being a
167 tuple ``(vm_name, vm_release, vm_vendor)`` and *osinfo* being a tuple
168 ``(os_name, os_version, os_arch)``. Values which cannot be determined are set to
169 the defaults given as parameters (which all default to ``''``).
170
171
172Windows Platform
173----------------
174
175
176.. function:: win32_ver(release='', version='', csd='', ptype='')
177
178 Get additional version information from the Windows Registry and return a tuple
179 ``(version, csd, ptype)`` referring to version number, CSD level and OS type
180 (multi/single processor).
181
182 As a hint: *ptype* is ``'Uniprocessor Free'`` on single processor NT machines
183 and ``'Multiprocessor Free'`` on multi processor machines. The *'Free'* refers
184 to the OS version being free of debugging code. It could also state *'Checked'*
185 which means the OS version uses debugging code, i.e. code that checks arguments,
186 ranges, etc.
187
188 .. note::
189
190 This function only works if Mark Hammond's :mod:`win32all` package is installed
191 and (obviously) only runs on Win32 compatible platforms.
192
193
194Win95/98 specific
195^^^^^^^^^^^^^^^^^
196
Georg Brandl116aa622007-08-15 14:28:22 +0000197.. function:: popen(cmd, mode='r', bufsize=None)
198
199 Portable :func:`popen` interface. Find a working popen implementation
200 preferring :func:`win32pipe.popen`. On Windows NT, :func:`win32pipe.popen`
201 should work; on Windows 9x it hangs due to bugs in the MS C library.
202
Georg Brandl116aa622007-08-15 14:28:22 +0000203
204Mac OS Platform
205---------------
206
207
208.. function:: mac_ver(release='', versioninfo=('','',''), machine='')
209
210 Get Mac OS version information and return it as tuple ``(release, versioninfo,
211 machine)`` with *versioninfo* being a tuple ``(version, dev_stage,
212 non_release_version)``.
213
214 Entries which cannot be determined are set to ``''``. All tuple entries are
215 strings.
216
217 Documentation for the underlying :cfunc:`gestalt` API is available online at
218 http://www.rgaros.nl/gestalt/.
219
220
221Unix Platforms
222--------------
223
224
225.. function:: dist(distname='', version='', id='', supported_dists=('SuSE','debian','redhat','mandrake'))
226
227 Tries to determine the name of the OS distribution name Returns a tuple
228 ``(distname, version, id)`` which defaults to the args given as parameters.
229
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000230.. XXX Document linux_distribution()?
Georg Brandl116aa622007-08-15 14:28:22 +0000231
232
233.. function:: libc_ver(executable=sys.executable, lib='', version='', chunksize=2048)
234
235 Tries to determine the libc version against which the file executable (defaults
236 to the Python interpreter) is linked. Returns a tuple of strings ``(lib,
237 version)`` which default to the given parameters in case the lookup fails.
238
239 Note that this function has intimate knowledge of how different libc versions
Christian Heimesc3f30c42008-02-22 16:37:40 +0000240 add symbols to the executable is probably only usable for executables compiled
Georg Brandl116aa622007-08-15 14:28:22 +0000241 using :program:`gcc`.
242
243 The file is read and scanned in chunks of *chunksize* bytes.
244