11 lines
351 B
Python
11 lines
351 B
Python
from subprocess import check_output
|
|
|
|
|
|
def arch():
|
|
'''Return the package architecture as a string.'''
|
|
# Get the package architecture for this system.
|
|
architecture = check_output(['dpkg', '--print-architecture']).rstrip()
|
|
# Convert the binary result into a string.
|
|
architecture = architecture.decode('utf-8')
|
|
return architecture
|