Skip to main content

Video-chat API. Compatible with most famous platforms.

Project description

ethmeet

Video-chat API. Compatible with most famous platforms.

Installation

Pip:

pip3 install ethmeet

Install Geckodriver:

git clone git@github.com:elleaech/ethmeet.git
python3 ethmeet/scripts/gecko_install.py

Docs

Basic Usage

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

Get source

git clone git@github.com:elleaech/ethmeet.git && cd ethmeet

python3 -m virtualenv . && pip3 install -r requirements.txt

License

Apache License 2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ethmeet-1.7.1.tar.gz (10.4 kB view hashes)

Uploaded Source

Built Distributions

ethmeet-1.7.1-py3.8.egg (17.0 kB view hashes)

Uploaded Source

ethmeet-1.7.1-py3-none-any.whl (12.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page