This file contains hidden or 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
==> ERROR: module not found: `sd_mod' | |
==> ERROR: module not found: `sr_mod' | |
==> ERROR: module not found: `ahci' | |
==> ERROR: module not found: `xhci_hcd' | |
==> ERROR: module not found: `ehci_pci' | |
==> ERROR: module not found: `rtsx_pci_sdmmc' | |
==> ERROR: module not found: `sd_mod' | |
==> ERROR: module not found: `ext4' | |
==> ERROR: module not found: `xhci_hcd' | |
==> ERROR: module not found: `ehci_pci' |
This file contains hidden or 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
#!/usr/bin/python2.7 | |
# -*- coding: utf-8 -*- | |
from flask import Flask, render_template | |
# Pour définir que tout le truc est une appli Flask | |
app = Flask(__name__) | |
# On définit le chemin route du genre ratemyfirefart.com/ ou ratemyfirefart.com/index | |
@app.route('/index') |
NewerOlder