Bana şöyle bir kod yazdı;

import requests

# Set the proxy server details
proxy_host = 'your_proxy_host'
proxy_port = 'your_proxy_port'
proxy_username = 'your_proxy_username'
proxy_password = 'your_proxy_password'

# Set the Gmail account details
email = 'your_email_address'
password = 'your_email_password'

# Set the registration form details
url = 'https://accounts.google.com/signup/v2/webcreateaccount?hl=en&flowName=GlifWebSignIn&flow Entry=SignUp'
data = {
'firstName': 'John',
'lastName': 'Doe',
'Username': email,
'Passwd': password,
'ConfirmPasswd': password
}

# Set the proxy details for the request
proxy = {
'http': f'http://{proxy_username}:{proxy_password}@{proxy_host}:{pr oxy_port}',
'https': f'https://{proxy_username}:{proxy_password}@{proxy_host}:{pr oxy_port}'
}

# Send the registration form data using the proxy
response = requests.post(url, data=data, proxies=proxy)

# Check the response status code
if response.status_code == 200:
print('Gmail account created successfully with proxy.')
else:
print('Error occurred while creating Gmail account with proxy.')