Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8628449
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T08:32:48+00:00 2026-06-12T08:32:48+00:00

I want to make a command line account maker (in python). It shows you

  • 0

I want to make a command line account maker (in python). It shows you the ReCapatcha using PIL.Image.Image.show() and submits the request to google after you enter all the information.

I’ve never been very good at JavaScript or HTML, so I couldn’t make right or left of the code on the accounts.google.com/SignUp page.

What is the url I would submit the request to, and what request would it be? Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T08:32:49+00:00Added an answer on June 12, 2026 at 8:32 am

    Like Code Monkey said, it’s impossible to achieve this using your current method. However, there may be another way. Instead of getting the user to fill in the data before querying the site, make your program behave like a normal web browser.

    You could use the urllib.request module to open the account creation page and download the raw html.

    from urllib.request import urlopen
    html = urlopen("https://accounts.google.com/NewAccount").read().decode('utf-8')
    

    From there, pick out the URL of the ReCAPTCHA image with regex.

    import re
    token = re.search("accounts.google.com/Captcha\?ctoken=([^\"]+)", html).group(1)
    url = "https://accounts.google.com/Captcha?ctoken=" + token
    

    You can then download the image from the URL and display it the user.

    As for actually submitting the form, I suspect that you will need to set the data parameter of urlopen with the data the user provides and make a POST request to another URL, but I haven’t verified this.

    An addon for Firefox that I’ve found to be extremely helpful for this kind of stuff is Tamper Data. It allows you to see exactly what your browser is doing, including showing what the POST/GET requests look like, the URL’s you’re accessing, and other useful information.

    Alternatively:

    • Use the Mechanize library (example)
    • Just open up a web browser window to the signup page and get your user to create an account the way Google intended.

    I should also add that I don’t condone violating Google’s TOS with mass account creation (for the purposes of spamming or otherwise). Google provides a great service. Please don’t abuse it.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to make a command-line utility in ruby that when run, list the
I want to make a command-line utility that does some operations based on reflection
Hey Guys I'm new to command line I want make the local changes to
I remember coming reading about a python module/lib that helped make nice command line
I'm using the example below: APT command line interface-like yes/no input? I want to
I want to make a command-line app that can be used like this: $push_to_emacs_buffer
I want the :make command to execute normally if there is a Makefile present.
I want to make movement such as the tail command with PHP, but how
I want make datetimepicker in my project. Using jquery how it is possible? I
I use GLib to parse some command-line options. The problem is that I want

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.