Skip to content

Commit

Permalink
Even more simpler!
Browse files Browse the repository at this point in the history
  • Loading branch information
akshanshkmr committed Dec 26, 2021
1 parent daf3bb6 commit 8377a79
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
21 changes: 8 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,17 @@ This is a hassle free script to fill your amizone faculty feedback automatically
By: Akshansh Kumar, AIIT

**Prerequesites:**
* Chrome browser should be installed

1. Chrome browser should be installed
2. Install required packages:
```
pip install -r requirements.txt
```


Steps:
**Steps:**

1. Download or clone this repository
2. Run the "amizone.py" file
3. Enter your amizone id and password
4. Enter your feedback comments and rating
5. Press enter to run the script
6. Sit back, relax and watch it happen
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

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

Expand Down
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import os

def install_requirements():
os.system('pip install -r ' + os.path.join('requirements.txt'))

if __name__ == '__main__':
install_requirements()

0 comments on commit 8377a79

Please sign in to comment.