Source code for pyradar.utils.system_info

#!/usr/bin/env python
# -*- coding: utf-8 -*-

# Copyright 2012 - 2013
# Matías Herranz <matiasherranz@gmail.com>
# Joaquín Tita <joaquintita@gmail.com>
#
# https://github.com/PyRadar/pyradar
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 3 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library. If not, see <http://www.gnu.org/licenses/>.


import platform
import pprint
import time


[docs]def get_system_info(): """ Function to collect and display system information. """ python_info = { 'version': platform.python_version(), 'version_tuple:': platform.python_version_tuple(), 'compiler': platform.python_compiler(), 'build': platform.python_build(), } platform_info = { 'platform': platform.platform(aliased=True), } os_and_hardware_info = { 'uname:': platform.uname(), 'system': platform.system(), 'node': platform.node(), 'release': platform.release(), 'version': platform.version(), 'machine': platform.machine(), 'processor': platform.processor(), } executable_architecture_info = { 'interpreter': platform.architecture(), '/bin/ls': platform.architecture('/bin/ls') } info = { 'python_info': python_info, 'platform_info': platform_info, 'os_and_hardware_info': os_and_hardware_info, 'executable_architecture_info': executable_architecture_info, } return info
if __name__ == '__main__': """ main: print system info and exit. """ info = get_system_info() print_info(info)
Read the Docs v: latest
Versions
latest
Downloads
PDF
HTML
Epub
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.