import requests 2 3url = "https://data.mixpanel.com/api/2.0/export" 4 5headers = {"Accept": "text/plain"} 6 7response = requests.request("GET", url, headers=headers) 8 9print(response.text)