import hmac, hashlib
secret = '0e0e12057a5b5883d943d3dd92689925134365750af467da3244fe4cadfce32b'
ghl_location_id = 'VMK8SyHTd8uCMgcJ7I2A'
tok = hmac.new(secret.encode(), ghl_location_id.encode(), hashlib.sha256).hexdigest()
url = f'https://onboarding.emersonnorth.com/?lid={ghl_location_id}&tok={tok}'
print(url)
