A python library to get linux/raspberry pi info
Project description
Linux Information
work in progress
Answers:
- is this a raspberry pi?
- functions return
None
on error
- functions return
- is this a raspbian or ubuntu distro?
- is this distro based on debian?
- reads
/proc/cpuinfo
for revision code - reads
/etc/os-release
for linux OS info
Info
Reads the revision code
which encodes a bunch of information as uuuuuuuuFMMMCCCCPPPPTTTTTTTTRRRR
. This library
decodes that number.
RPiInfo = namedtuple("RPiInfo", "type processor memory revision manufacturer flag")
LinuxInfo = namedtuple("LinuxInfo", "distro distro_pretty debian_based version version_codename")
Example
from linuxinfo import linux_info()
from linuxinfo import pi_info
from linuxinfo import RPiInfo, LinuxInfo # not sure you need these
from linuxinfo.rpi import decode # normally you don't use this!
# given a revision code, it decodes it (see below). Normally you
# wouldn't do this ... this is just a test
print(decode(0xa020a0)) # compute module 3
print(decode(0xa22042)) # Pi2B
print(decode(0xc03111)) # Pi4B
print(pi_info()) # reads /proc/cpuinfo and get revision code
RPiInfo(type='CM3', processor='BCM2837', memory='1GB', revision=0, manufacturer='Sony UK', flag='new-style revision')
RPiInfo(type='2B', processor='BCM2837', memory='1GB', revision=2, manufacturer='Embest', flag='new-style revision')
RPiInfo(type='4B', processor='BCM2711', memory='4GB', revision=1, manufacturer='Sony UK', flag='new-style revision')
Change Log
Date | Version | Notes |
---|---|---|
2020 Dec 4 | 0.1.0 | changed name because it does more |
2019 Oct 27 | 0.0.3 | simple clean up |
2019 Oct 27 | 0.0.1 | init |
MIT License
Copyright (c) 2019 Kevin J. Walchko
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file linuxinfo-0.1.1.tar.gz
.
File metadata
- Download URL: linuxinfo-0.1.1.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.2 CPython/3.7.5 Linux/5.3.0-29-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8cae1916bf279db626128c13439c7c7cd37f16a80d346ac38f11bb1143ad53b |
|
MD5 | 02b342d23a360b95f025f8278f08a9a2 |
|
BLAKE2b-256 | 1ce8a3203defeb25db491ad488a403ca2a03c50f4f57dfbcf32a65ae7a9d7a21 |
File details
Details for the file linuxinfo-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: linuxinfo-0.1.1-py3-none-any.whl
- Upload date:
- Size: 5.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.2 CPython/3.7.5 Linux/5.3.0-29-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d67382b1ffe7be152031d7711fcd53a1506edf2e8040e8d407f2490df99eecd9 |
|
MD5 | 3835c31ad57049d392044be8b0bbcb2d |
|
BLAKE2b-256 | 6a89314d3bacd7e60c70f7296c52cee600e50eced5d9a42f1325c7e83a7f726d |