Metadata-Version: 2.1
Name: ethmeet
Version: 1.7.1
Summary: Video-chat API. Compatible with most famous platforms.
Home-page: https://github.com/elleaech/ethmeet
Author: Lo Han
Author-email: lohan.uchsa@protonmail.com
License: UNKNOWN
Description: # ethmeet
        Video-chat API. Compatible with most famous platforms.
        
        ## Installation
        Pip:
        ```shell script
        pip3 install ethmeet
        ```
        
        Install Geckodriver:
        ```shell script
        git clone git@github.com:elleaech/ethmeet.git
        python3 ethmeet/scripts/gecko_install.py
        ```
        
        ## Docs
        - [API Reference](https://github.com/elleaech/ethmeet/blob/master/docs/ethmeet.md)
        
        ### Basic Usage
        ``` python
        from ethmeet import (Driver, AttendGoogle, CreateGoogle, LoginGoogle)
        
        # SET COMMON DRIVER
        driver = Driver()
        
        
        # INSTANCE OBJECTSs
        adm_login = LoginGoogle(driver = driver())
        
        create = CreateGoogle(driver = driver())
        
        login = LoginGoogle(driver = driver())
        
        attend = AttendGoogle(driver = driver())
        
        
        # SET LOGIN DATA
        adm_login.login_data = {"some.email@service.com", "SomePa$$word123"}
        
        # IF LOGIN IS SUCCESSFUL, CREATE NEW MEET CODE
        if adm_login.doLogin():
                create.new_meet()
        
        # GET LOGIN INPUT
        login.login_data = {}
        
        # IF LOGIN IS SUCCESSFUL AND MEET CODE WAS CREATED, GO TO MEETING
        if login.doLogin() and create.code != None:
                attend.set_meeting_url(create.code)
                attend.goto_meet()
        
        
        # CLOSE DRIVER
        driver.close()
        ```
        
        ## Contributing & Issue Tracker
        Branch & [Pull Request](https://github.com/elleaech/ethmeet/pulls)
        - [Issues](https://github.com/elleaech/ethmeet/issues)
        
        ### Get source
        ```shell script
        git clone git@github.com:elleaech/ethmeet.git && cd ethmeet
        
        python3 -m virtualenv . && pip3 install -r requirements.txt
        ```
        
        ## License
        [Apache License 2.0](https://github.com/elleaech/ethmeet/blob/master/LICENSE)
        
Keywords: bot firefox automation browser selenium meeting zoom google
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX :: Linux
Requires-Python: >=3.8
Description-Content-Type: text/markdown
