blob: f7fff89b764c635cc196776558a821e6aa38bdad (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
from subprocess import Popen, PIPE
from plyer.facades import UniqueID
from plyer.utils import whereis_exe
from os import environ
class LinuxUniqueID(UniqueID):
def _get_uid(self):
old_lang = environ.get('LANG')
environ['LANG'] = 'C'
lshw_process = Popen(["lshw", "-quiet"], stdout=PIPE, stderr=PIPE)
grep_process = Popen(["grep", "-m1", "serial:"],
stdin=lshw_process.stdout, stdout=PIPE)
lshw_process.stdout.close()
output = grep_process.communicate()[0]
environ['LANG'] = old_lang
if output:
return output.split()[1]
else:
return None
def instance():
import sys
if whereis_exe('lshw'):
return LinuxUniqueID()
sys.stderr.write("lshw not found.")
return UniqueID()
|