kaliiiiiiiiii / Menti_bot

Spoof // Bot for Mentimeter using Selenium library with chromedriver

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Menti_bot V1

Feel free to test my code!

Getting Started

Dependencies

  • Python>=3.7
  • Windows 10 (keypress detection doesn't work for Linux yet!)
  • Requirements.txt

Installing

  • Install Requirementspip install -r requirements.txt

Usage

Set your PIN in main.py at:

import time

# sel_profiles import
from selenium_profiles.driver import driver as mydriver
from selenium_profiles import profiles

# import menti
from menti import menti

# start driver
mydriver = mydriver()
driver = mydriver.start(profiles.Windows())

# init Menti
menti = menti('8867 2568', driver)  # change pin here!

# loop 10 times
for x in range(10):
    # menti.scales([1, 20])  # scale 1 = 15, scale 2 = 10
    time.sleep(0.2)
    menti.multiple_choice(1)  # choose nr. 1 of choices
    menti.submit_reload()  # submit and reload page

# menti.word_cloud("myword")  # write "myword" into cloud field
# menti.looper() # for not yet implemented methods

driver.quit()  # don't forget to stop the driver!

using menti.looper()

  • Choose your answers
  • Press "x" to reload and submit when reaching "Submit" button
  • Press "q" to close and exit driver

Help

Please feel free to open an issue or fork!

Known Bugs

None yet

Todo // Features

  • clear_cookies
  • detect_url based on PIN
  • automation for:
    • multiple-choice
    • word-cloud
    • scales

Deprecated

nothing yet

Authors

Aurin Aegerter

Version History

  • Menti_botV1
    • first version as importable file

License

Shield: CC BY-NC-SA 4.0

This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.

CC BY-NC-SA 4.0

Disclaimer

I am not responsible what you use the code for!!! Also no warranty!

Acknowledgments

Inspiration, code snippets, etc.

About

Spoof // Bot for Mentimeter using Selenium library with chromedriver

License:Other


Languages

Language:Python 100.0%