A simple voting bot for Mentimeter
Requires Python 3.x
Requires:
pip3 install requests
pip3 install grequests
pip3 install mttkinter
run with:
python3 bot.py
or:
sh start.sh
To create app:
pip3 install -U git+https://github.com/metachris/py2app.git@master
py2applet --make-setup GUI.py
or:
create python script by yourself:
from setuptools import setup
APP = ['GUI.py']
DATA_FILES = ['botFunc.py']
OPTIONS = {'argv_emulation': True}
setup(
app=APP,
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
)
run with:
python3 setup.py py2app -A