Jump to content
carartem03

How get name of videocard, processor?

Recommended Posts

This should be enough to generate a HWID.

>>> import platform

>>> platform.machine()

'x86'

>>> platform.version()

'5.1.2600'

>>> platform.platform()

'Windows-XP-5.1.2600-SP2'

>>> platform.uname()

('Windows', 'name', 'XP', '5.1.2600', 'x86', 'x86 Family 6 Model 15 Stepping 6, GenuineIntel')

>>> platform.system()

'Windows'

>>> platform.processor()

'x86 Family 6 Model 15 Stepping 6, GenuineIntel'

from uuid import getnode as get_mac

mac = get_mac()

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...