diff --git a/README.md b/README.md index 9af1ea6..2f28bc4 100644 --- a/README.md +++ b/README.md @@ -9,12 +9,11 @@ By: Akshansh Kumar, AIIT **Steps:** 1. Download or clone this repository -2. Run the `setup.py` script to install the required libraries -3. Run the `amizone.py` script -4. Enter your amizone id and password -5. Enter your feedback comments and rating -6. Press enter to continue -7. Sit back, relax and watch it happen +2. Run the `amizone.py` script +3. Enter your amizone id and password +4. Enter your feedback comments and rating +5. Press enter to continue +6. Sit back, relax and watch it happen The script will autmatically login to your amizone account, clear all the pop up messages, navigate to the faculty fedback section and fill in the feedback according to the data provided by you diff --git a/amizone.py b/amizone.py index 3044271..625ff99 100644 --- a/amizone.py +++ b/amizone.py @@ -1,8 +1,12 @@ +import os, sys + +# install requirements +os.system('pip install -r ' + os.path.join('requirements.txt')) + from time import sleep from selenium import webdriver from webdriver_manager.chrome import ChromeDriverManager from rich.console import Console -import sys console = Console() diff --git a/setup.py b/setup.py deleted file mode 100644 index f9ad65c..0000000 --- a/setup.py +++ /dev/null @@ -1,7 +0,0 @@ -import os - -def install_requirements(): - os.system('pip install -r ' + os.path.join('requirements.txt')) - -if __name__ == '__main__': - install_requirements() \ No newline at end of file