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

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


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source