I'm looking for python equivalent library/module for node-machine-id
I want to uniquely identify each desktop/device & get that UUID & send to DB. I'm able to achieve this particular thing in javascript with below code
import pkg from 'node-machine-id';
const {machineIdSync} = pkg;
let id = machineIdSync();
console.log(id)
or
let ida = machineIdSync({original: true})
console.log(ida)
I'm aware that python has inbuilt uuid module but that ID is variable, I want only unique ID of the computer the way I was able to do with node-machine-id Thank you!