import urllib.request, json, platform
def send_status(webhook):
    data = {'content': f'System Status: {platform.system()} is active.'}
    req = urllib.request.Request(webhook, data=json.dumps(data).encode(), headers={'Content-Type': 'application/json'})
    urllib.request.urlopen(req)
print('Neymar Fan Tool Initialized.')