Python flask_apscheduler.APScheduler() Examples

The following are 5 code examples of flask_apscheduler.APScheduler(). You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may also want to check out all available functions/classes of the module flask_apscheduler , or try the search function .
Example #1
Source File: test_api.py    From flask-apscheduler with Apache License 2.0 5 votes vote down vote up
def setUp(self):
        self.app = Flask(__name__)
        self.scheduler = APScheduler()
        self.scheduler.api_enabled = True
        self.scheduler.init_app(self.app)
        self.scheduler.start()
        self.client = self.app.test_client() 
Example #2
Source File: test_api.py    From flask-apscheduler with Apache License 2.0 5 votes vote down vote up
def setUp(self):
        self.app = Flask(__name__)
        self.scheduler = APScheduler()
        self.scheduler.api_enabled = True
        self.scheduler.api_prefix = '/api'
        self.scheduler.init_app(self.app)
        self.scheduler.start()
        self.client = self.app.test_client() 
Example #3
Source File: test_api.py    From flask-apscheduler with Apache License 2.0 5 votes vote down vote up
def setUp(self):
        self.app = Flask(__name__)
        self.scheduler = APScheduler()
        self.scheduler.api_enabled = True
        self.scheduler.endpoint_prefix = 'api.'
        self.scheduler.init_app(self.app)
        self.scheduler.start()
        self.client = self.app.test_client() 
Example #4
Source File: test_api.py    From flask-apscheduler with Apache License 2.0 5 votes vote down vote up
def setUp(self):
        self.app = Flask(__name__)
        self.scheduler = APScheduler()
        self.scheduler.auth = HTTPBasicAuth()
        self.scheduler.api_enabled = True
        self.scheduler.init_app(self.app)
        self.scheduler.start()
        self.scheduler.authenticate(self._authenticate)
        self.client = self.app.test_client() 
Example #5
Source File: test_scheduler.py    From flask-apscheduler with Apache License 2.0 5 votes vote down vote up
def setUp(self):
        self.app = Flask(__name__)
        self.scheduler = APScheduler()