This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask import Flask, request | |
import time | |
app = Flask(__name__) | |
# This dictionary will store the paths that have been requested. | |
requested_paths = {} | |
@app.route('/', defaults={'path': ''}, methods=['GET', 'POST']) | |
@app.route('/<path:path>', methods=['GET', 'POST']) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Klistra in värdet från tabellen på https://www.antagning.se/se/mypages/credential | |
inom trippel citat tecknen härunder | |
Ställ in dit meritvärdet och kör programmet | |
""" | |
text = """Biologi 1 BIOBIO01 B 100 | |
Datorteknik 1a DAODAT01A A 100 | |
Digitalt skapande 1 DIGDIG01 A 100 | |
Engelska 5 ENGENG05 A 100 | |
Engelska 6 ENGENG06 A 100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#encoding: Utf8 | |
#^^ Utf8 kodning gör så att aplikationene funkar för | |
# de flästa språk och teknen. | |
from Tkinter import * #Bibliotek för grafiskt användar grännsnit | |
from tkMessageBox import* #bibliotek för popup rutor | |
""" | |
Alexander Bladh 2013-30/11 |