trying to get string from Pastebin not working (HWID) python

170 views Asked by At

code below worked for some time now it completely doesnt work

no errors just not getting my hwid in that requests.get('PB URL').text:

import requests
import subprocess
hwid = subprocess.check_output('wmic csproduct get uuid').decode().split('\n')[1].strip()
if hwid not in requests.get('PB URL').text:
#code
0

There are 0 answers