Skip to content

Latest commit

 

History

History

Teacher Promotion Flask API

teacher-promotion-flask-api

Flask API for teacher promotion. Due to confidentiality agreements, I am unable to disclose the data used for training the model or the three promotion parameters labeled as 1, 2 and 3. However, you are welcome to utilize the API or customize it as needed. Thank you.

Install Requirements

pip install -r requirements.txt

Setup

  • open the terminal

  • clone the repository

     git clone https://github.com/saeedahmadicp/teacher-promotion-flask-api.git
  • change the directory

     cd teacher-promotion-flask-api
  • execute the below commands

     pip3 install pipenv
     pipenv install
     pipenv shell
  • install the requirements

     pip install -r requirements.txt
  • execute the following commands

     set FLASK_APP=main.py
     set FLASK_ENV=development
     flask run
  • If you are using Linux or Mac, use export instead of set in the above commands