Ajout d'un timer
This commit is contained in:
parent
47e89cc295
commit
35fc990bc0
@ -11,6 +11,7 @@ from flask import Flask, request # Used for the web framework
|
|||||||
from printer import Printer # The wrapper for the printer class
|
from printer import Printer # The wrapper for the printer class
|
||||||
import toml # Used for the config file parsing
|
import toml # Used for the config file parsing
|
||||||
import pprint
|
import pprint
|
||||||
|
import time
|
||||||
|
|
||||||
# Load the configuration file
|
# Load the configuration file
|
||||||
try:
|
try:
|
||||||
@ -67,4 +68,5 @@ def api_index():
|
|||||||
def api_print_sms():
|
def api_print_sms():
|
||||||
texte = request.args.get("txt",type=str)
|
texte = request.args.get("txt",type=str)
|
||||||
app.logger.debug("Printing : " + texte)
|
app.logger.debug("Printing : " + texte)
|
||||||
|
time.sleep(10)
|
||||||
return printer.print_sms(texte)
|
return printer.print_sms(texte)
|
||||||
|
Loading…
Reference in New Issue
Block a user