Metadata-Version: 2.1
Name: bardToken
Version: 0.0.2
Summary: auto login google account by selenium chrome driver 
Home-page: https://pypi.org/project/bardToken
Author: KuoYuan Li
Author-email: funny4875@gmail.com
License: UNKNOWN
Description: # Author:KuoYuan Li 
        auto login google account by selenium chrome driver 
        ##### installation Note 
        Need selenium 4(above) and webdriver_manager to get the chromedriver automatically. 
        if the version is not correction , 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
        
Keywords: bard api,selenium,google auth,chromedriver
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
