auto login google account by selenium chrome driver
Project description
Author:KuoYuan Li
auto login google account by selenium chrome driver
installation Note
Need selenium 4(or newer) and webdriver_manager to get the chromedriver automatically. if the version dose not matcch , please uninstall the selenium and install again.
bardapi is used in sample code and should be installed to insure it work normaly
pip install bardapi
Sample code
from selenium import webdriver
from selenium.webdriver.chrome.service import Service as ChromeService
from webdriver_manager.chrome import ChromeDriverManager
from bardapi import Bard
import seleniumGoogleLogin
import bardToken
email = 'your gmail'
password = 'your password'
#start chromedriver
driver = webdriver.Chrome(service=ChromeService(ChromeDriverManager().install()))
#google auth
if seleniumGoogleLogin.start(driver,email, password):
#get bard token
token = bardToken.get(driver)
print(token)
bard = Bard(token=token)
ans = bard.get_answer("is there any bard api?")['content']
print(ans)
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
bardToken-0.0.3.tar.gz
(3.1 kB
view details)
File details
Details for the file bardToken-0.0.3.tar.gz
.
File metadata
- Download URL: bardToken-0.0.3.tar.gz
- Upload date:
- Size: 3.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 23e73bbd1c765a572d446f9d01821ca919b751ecc60bcbefbf8ba316cd242be0 |
|
MD5 | d24257392f895db1b9858d0450f3808d |
|
BLAKE2b-256 | 0078b779676ba708e51c15ece257a0e7855b3019c9c3f0c6b7da225a7723b202 |