Search code examples
androidpythonmac-addressxbmc

how to get mac address in android with python


I am trying to code an addon in XBMC linux environment within Android. I can see Mac address inside XBMC. But I'd like to grab the mac address for the addon and I can't figure out how.

mac=uuid.getnode()

I have already tried with code like above but gives me numbers only and different everytime when run in android.

could someone give any suggestion please


Solution

  • You can use XBMC InfoLabels

    if xbmc.getInfoLabel('Network.MacAddress') != None:
        mac_address = xbmc.getInfoLabel('Network.MacAddress')
    else:
        mac_address = None