from scrapegraph_py import Clientclient = Client(api_key="your-api-key")# Define custom headersheaders = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36", "Accept-Language": "en-US,en;q=0.9", "Sec-Ch-Ua-Platform": "\"Windows\""}# Use with SmartScraperresponse = client.smartscraper( website_url="https://example.com", user_prompt="Extract the main content", headers=headers)# Use with SearchScraperresponse = client.searchscraper( user_prompt="Find information about...", headers=headers)# Use with Markdownifyresponse = client.markdownify( website_url="https://example.com", headers=headers)