mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:16:30 +00:00
8 lines
247 B
Cython
8 lines
247 B
Cython
cdef class HardwareInfo:
|
|
cdef str cpu, gpu, memory, mac_address, hash
|
|
cdef to_json_object(self)
|
|
|
|
cdef class HardwareService:
|
|
cdef bint is_windows
|
|
cdef get_mac_address(self, interface=*)
|
|
cdef HardwareInfo get_hardware_info(self) |