blob: e27f2ad8b0efb2489489329cbbbf9c7e27311876 [file] [log] [blame]
Georg Brandl0eaab972009-06-08 08:00:22 +00001:mod:`platform` --- Access to underlying platform's identifying data
2=====================================================================
Georg Brandl116aa622007-08-15 14:28:22 +00003
4.. module:: platform
5 :synopsis: Retrieves as much platform identifying data as possible.
Antoine Pitroufbd4f802012-08-11 16:51:50 +02006.. moduleauthor:: Marc-André Lemburg <mal@egenix.com>
Georg Brandl116aa622007-08-15 14:28:22 +00007.. sectionauthor:: Bjorn Pettersen <bpettersen@corp.fairisaac.com>
8
Raymond Hettinger469271d2011-01-27 20:38:46 +00009**Source code:** :source:`Lib/platform.py`
10
11--------------
Georg Brandl116aa622007-08-15 14:28:22 +000012
Georg Brandl116aa622007-08-15 14:28:22 +000013.. note::
14
15 Specific platforms listed alphabetically, with Linux included in the Unix
16 section.
17
18
19Cross Platform
20--------------
21
22
23.. function:: architecture(executable=sys.executable, bits='', linkage='')
24
25 Queries the given executable (defaults to the Python interpreter binary) for
26 various architecture information.
27
28 Returns a tuple ``(bits, linkage)`` which contain information about the bit
29 architecture and the linkage format used for the executable. Both values are
30 returned as strings.
31
32 Values that cannot be determined are returned as given by the parameter presets.
Andrew Svetlova2fe3342012-08-11 21:14:08 +030033 If bits is given as ``''``, the ``sizeof(pointer)`` (or
34 ``sizeof(long)`` on Python version < 1.5.2) is used as indicator for the
Georg Brandl116aa622007-08-15 14:28:22 +000035 supported pointer size.
36
37 The function relies on the system's :file:`file` command to do the actual work.
38 This is available on most if not all Unix platforms and some non-Unix platforms
39 and then only if the executable points to the Python interpreter. Reasonable
40 defaults are used when the above needs are not met.
41
Antoine Pitrouf2590762010-12-21 18:49:01 +000042 .. note::
43
44 On Mac OS X (and perhaps other platforms), executable files may be
45 universal files containing multiple architectures.
46
47 To get at the "64-bitness" of the current interpreter, it is more
48 reliable to query the :attr:`sys.maxsize` attribute::
49
50 is_64bits = sys.maxsize > 2**32
51
Georg Brandl116aa622007-08-15 14:28:22 +000052
53.. function:: machine()
54
55 Returns the machine type, e.g. ``'i386'``. An empty string is returned if the
56 value cannot be determined.
57
58
59.. function:: node()
60
61 Returns the computer's network name (may not be fully qualified!). An empty
62 string is returned if the value cannot be determined.
63
64
65.. function:: platform(aliased=0, terse=0)
66
67 Returns a single string identifying the underlying platform with as much useful
68 information as possible.
69
70 The output is intended to be *human readable* rather than machine parseable. It
71 may look different on different platforms and this is intended.
72
73 If *aliased* is true, the function will use aliases for various platforms that
74 report system names which differ from their common names, for example SunOS will
75 be reported as Solaris. The :func:`system_alias` function is used to implement
76 this.
77
78 Setting *terse* to true causes the function to return only the absolute minimum
79 information needed to identify the platform.
80
81
82.. function:: processor()
83
84 Returns the (real) processor name, e.g. ``'amdk6'``.
85
86 An empty string is returned if the value cannot be determined. Note that many
87 platforms do not provide this information or simply return the same value as for
88 :func:`machine`. NetBSD does this.
89
90
91.. function:: python_build()
92
93 Returns a tuple ``(buildno, builddate)`` stating the Python build number and
94 date as strings.
95
96
97.. function:: python_compiler()
98
99 Returns a string identifying the compiler used for compiling Python.
100
101
102.. function:: python_branch()
103
104 Returns a string identifying the Python implementation SCM branch.
105
Georg Brandl116aa622007-08-15 14:28:22 +0000106
107.. function:: python_implementation()
108
109 Returns a string identifying the Python implementation. Possible return values
Ezio Melottib351bcc2011-05-03 20:41:48 +0300110 are: 'CPython', 'IronPython', 'Jython', 'PyPy'.
Georg Brandl116aa622007-08-15 14:28:22 +0000111
Georg Brandl116aa622007-08-15 14:28:22 +0000112
113.. function:: python_revision()
114
115 Returns a string identifying the Python implementation SCM revision.
116
Georg Brandl116aa622007-08-15 14:28:22 +0000117
118.. function:: python_version()
119
120 Returns the Python version as string ``'major.minor.patchlevel'``
121
122 Note that unlike the Python ``sys.version``, the returned value will always
123 include the patchlevel (it defaults to 0).
124
125
126.. function:: python_version_tuple()
127
128 Returns the Python version as tuple ``(major, minor, patchlevel)`` of strings.
129
130 Note that unlike the Python ``sys.version``, the returned value will always
131 include the patchlevel (it defaults to ``'0'``).
132
133
134.. function:: release()
135
136 Returns the system's release, e.g. ``'2.2.0'`` or ``'NT'`` An empty string is
137 returned if the value cannot be determined.
138
139
140.. function:: system()
141
142 Returns the system/OS name, e.g. ``'Linux'``, ``'Windows'``, or ``'Java'``. An
143 empty string is returned if the value cannot be determined.
144
145
146.. function:: system_alias(system, release, version)
147
148 Returns ``(system, release, version)`` aliased to common marketing names used
149 for some systems. It also does some reordering of the information in some cases
150 where it would otherwise cause confusion.
151
152
153.. function:: version()
154
155 Returns the system's release version, e.g. ``'#3 on degas'``. An empty string is
156 returned if the value cannot be determined.
157
158
159.. function:: uname()
160
Larry Hastings68386bc2012-06-24 14:30:41 -0700161 Fairly portable uname interface. Returns a :func:`~collections.namedtuple`
162 containing six attributes: :attr:`system`, :attr:`node`, :attr:`release`,
163 :attr:`version`, :attr:`machine`, and :attr:`processor`.
Georg Brandl116aa622007-08-15 14:28:22 +0000164
Larry Hastings68386bc2012-06-24 14:30:41 -0700165 Note that this adds a sixth attribute (:attr:`processor`) not present
166 in the :func:`os.uname` result. Also, the attribute names are different
167 for the first two attributes; :func:`os.uname` names them
168 :attr:`sysname` and :attr:`nodename`.
Georg Brandl116aa622007-08-15 14:28:22 +0000169
170 Entries which cannot be determined are set to ``''``.
171
Larry Hastings68386bc2012-06-24 14:30:41 -0700172 .. versionchanged:: 3.3
173 Result changed from a tuple to a namedtuple.
174
Georg Brandl116aa622007-08-15 14:28:22 +0000175
176Java Platform
177-------------
178
179
180.. function:: java_ver(release='', vendor='', vminfo=('','',''), osinfo=('','',''))
181
Georg Brandlc6c31782009-06-08 13:41:29 +0000182 Version interface for Jython.
Georg Brandl116aa622007-08-15 14:28:22 +0000183
184 Returns a tuple ``(release, vendor, vminfo, osinfo)`` with *vminfo* being a
185 tuple ``(vm_name, vm_release, vm_vendor)`` and *osinfo* being a tuple
186 ``(os_name, os_version, os_arch)``. Values which cannot be determined are set to
187 the defaults given as parameters (which all default to ``''``).
188
189
190Windows Platform
191----------------
192
193
194.. function:: win32_ver(release='', version='', csd='', ptype='')
195
196 Get additional version information from the Windows Registry and return a tuple
Georg Brandl6647a712013-10-06 19:19:18 +0200197 ``(release, version, csd, ptype)`` referring to OS release, version number,
198 CSD level (service pack) and OS type (multi/single processor).
Georg Brandl116aa622007-08-15 14:28:22 +0000199
200 As a hint: *ptype* is ``'Uniprocessor Free'`` on single processor NT machines
201 and ``'Multiprocessor Free'`` on multi processor machines. The *'Free'* refers
202 to the OS version being free of debugging code. It could also state *'Checked'*
203 which means the OS version uses debugging code, i.e. code that checks arguments,
204 ranges, etc.
205
206 .. note::
207
Antoine Pitrouf2590762010-12-21 18:49:01 +0000208 This function works best with Mark Hammond's
Christian Heimes02781dc2008-03-21 01:11:52 +0000209 :mod:`win32all` package installed, but also on Python 2.3 and
210 later (support for this was added in Python 2.6). It obviously
211 only runs on Win32 compatible platforms.
Georg Brandl116aa622007-08-15 14:28:22 +0000212
213
214Win95/98 specific
215^^^^^^^^^^^^^^^^^
216
Antoine Pitrou877766d2011-03-19 17:00:37 +0100217.. function:: popen(cmd, mode='r', bufsize=-1)
Georg Brandl116aa622007-08-15 14:28:22 +0000218
219 Portable :func:`popen` interface. Find a working popen implementation
220 preferring :func:`win32pipe.popen`. On Windows NT, :func:`win32pipe.popen`
221 should work; on Windows 9x it hangs due to bugs in the MS C library.
222
Victor Stinner1dfd3802011-03-03 12:54:07 +0000223 .. deprecated:: 3.3
224 This function is obsolete. Use the :mod:`subprocess` module. Check
225 especially the :ref:`subprocess-replacements` section.
226
Georg Brandl116aa622007-08-15 14:28:22 +0000227
228Mac OS Platform
229---------------
230
231
232.. function:: mac_ver(release='', versioninfo=('','',''), machine='')
233
234 Get Mac OS version information and return it as tuple ``(release, versioninfo,
235 machine)`` with *versioninfo* being a tuple ``(version, dev_stage,
236 non_release_version)``.
237
238 Entries which cannot be determined are set to ``''``. All tuple entries are
239 strings.
240
Georg Brandl116aa622007-08-15 14:28:22 +0000241
242Unix Platforms
243--------------
244
245
Christian Heimes02781dc2008-03-21 01:11:52 +0000246.. function:: dist(distname='', version='', id='', supported_dists=('SuSE','debian','redhat','mandrake',...))
Georg Brandl116aa622007-08-15 14:28:22 +0000247
Benjamin Petersone9bbc8b2008-09-28 02:06:32 +0000248 This is another name for :func:`linux_distribution`.
Georg Brandl116aa622007-08-15 14:28:22 +0000249
Christian Heimes02781dc2008-03-21 01:11:52 +0000250.. function:: linux_distribution(distname='', version='', id='', supported_dists=('SuSE','debian','redhat','mandrake',...), full_distribution_name=1)
251
252 Tries to determine the name of the Linux OS distribution name.
253
Benjamin Petersone9bbc8b2008-09-28 02:06:32 +0000254 ``supported_dists`` may be given to define the set of Linux distributions to
255 look for. It defaults to a list of currently supported Linux distributions
256 identified by their release file name.
Christian Heimes02781dc2008-03-21 01:11:52 +0000257
Benjamin Petersone9bbc8b2008-09-28 02:06:32 +0000258 If ``full_distribution_name`` is true (default), the full distribution read
259 from the OS is returned. Otherwise the short name taken from
260 ``supported_dists`` is used.
Christian Heimes02781dc2008-03-21 01:11:52 +0000261
Benjamin Petersone9bbc8b2008-09-28 02:06:32 +0000262 Returns a tuple ``(distname,version,id)`` which defaults to the args given as
263 parameters. ``id`` is the item in parentheses after the version number. It
264 is usually the version codename.
Georg Brandl116aa622007-08-15 14:28:22 +0000265
266.. function:: libc_ver(executable=sys.executable, lib='', version='', chunksize=2048)
267
268 Tries to determine the libc version against which the file executable (defaults
269 to the Python interpreter) is linked. Returns a tuple of strings ``(lib,
270 version)`` which default to the given parameters in case the lookup fails.
271
272 Note that this function has intimate knowledge of how different libc versions
Christian Heimesc3f30c42008-02-22 16:37:40 +0000273 add symbols to the executable is probably only usable for executables compiled
Georg Brandl116aa622007-08-15 14:28:22 +0000274 using :program:`gcc`.
275
276 The file is read and scanned in chunks of *chunksize* bytes.
277