김범철
김범철

Reputation: 19

How to know whether a Google user account exists?

I want to know if a specific account is registered with Google. Is it possible with Python?

Upvotes: 0

Views: 4817

Answers (1)

An Nguyen
An Nguyen

Reputation: 321

There is one way that you can do it is using Selenium in Python.

Step 1: Go to page : Google check existed accounts.

Step 2: Write script to check if your account is existed or not by asserting the returned result and your expected result (such as if your account is not existed Google will notice that: "No account found with that email address").

Step 3: Return your result for later purposes.

Upvotes: 2

Related Questions