Skip to content

Instantly share code, notes, and snippets.

View kxbin's full-sized avatar
💭
I may be slow to respond.

Jabin Kong kxbin

💭
I may be slow to respond.
  • GuangZhou,China
View GitHub Profile
@chadselph
chadselph / flaskwithcron.py
Last active April 21, 2022 10:20
flask with "cron"-like loop
from flask import Flask, render_template, jsonify, request
from threading import Timer, Thread
from time import sleep
app = Flask(__name__)
@app.route("/api/<method>")
def api(method):
data = {