Giter Club home page Giter Club logo

Comments (3)

christopherpickering avatar christopherpickering commented on June 21, 2024 1

Well, in development you can use the flask dev server, using one of these excellent examples: https://github.com/viniciuschiele/flask-apscheduler/tree/master/examples

Using a production server + debug will prevent the scheduler from starting

if get_debug_flag() and not werkzeug.serving.is_running_from_reloader():

This was done to allow development to work with the flask debugger.

You could tweak your startup to look something like:

from flask.helpers import get_debug_flag
if get_debug_flag():
    app.run()
else:
    .... wsgi server run forever

from flask-apscheduler.

christopherpickering avatar christopherpickering commented on June 21, 2024

@GodsDusk Can you share an example?

from flask-apscheduler.

GodsDusk avatar GodsDusk commented on June 21, 2024

here is an example:

M1 Pro Ventura
python 3.10
Flask-APScheduler 1.12.4
Flask 2.2.2
gevent 22.10.2

# run.py
from flask import Flask
from flask_apscheduler import APScheduler

scheduler = APScheduler()


@scheduler.task("interval", id="job1", seconds=3, misfire_grace_time=900)
def job1():
    """Sample job 1."""
    print("Job 1 executed")


if __name__ == "__main__":
    app = Flask(__name__)

    scheduler.init_app(app)
    scheduler.start()

    from gevent.pywsgi import WSGIServer
    http_server = WSGIServer(('0.0.0.0', 5001), app)
    http_server.serve_forever()

first, I exec python run.py, It works fine, and "Job 1 executed" is printed on the console.

Then, I exec export FLASK_DEBUG=development && python run.py, nothing printed

from flask-apscheduler.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.