Beispiel #1
0
def home():
    #deleting all file in the folder
    # folder = 'static/temp/'
    # for the_file in os.listdir(folder):
    # 	file_path = os.path.join(folder, the_file)
    # 	try:
    # 		if os.path.isfile(file_path):
    # 			os.unlink(file_path)
    # 	except Exception as e:
    # 		print(e)
    if request.method == 'GET':
        return render_template("index.html")
    elif request.method == 'POST':

        year = int(request.form.get('year'))
        batch = request.form.get('batch').upper()
        #returning dictionary from module
        if year == 2:
            tt_dict = secondyear.second(batch)
        elif year == 3:
            tt_dict = thirdyear.third(batch)
        elif year == 1:
            tt_dict = firstyear.first(batch)
        elif year == 4:
            tt_dict = fourthyear.fourth(batch)

        try:

            pass
        except Exception as e:
            return render_template("timetable.html", tt_dict=tt_dict)

    return render_template("timetable.html", tt_dict=tt_dict)
Beispiel #2
0
def api(year,batch):
	batch=batch.upper()
	if year==2:
		tt_dict=secondyear.second(batch)
	elif year==3:
		tt_dict=thirdyear.third(batch)
	elif year==1:
		tt_dict=firstyear.first(batch)
	elif year==4:
		tt_dict=fourthyear.fourth(batch)
	return jsonify(tt_dict)
Beispiel #3
0
def tt(year,batch):
	batch=batch.upper()
	if year==2:
		tt_dict=secondyear.second(batch)
	elif year==3:
		tt_dict=thirdyear.third(batch)
	elif year==1:
		tt_dict=firstyear.first(batch)
	elif year==4:
		tt_dict=fourthyear.fourth(batch)
	return render_template("timetable.html",tt_dict=tt_dict)