Ubuntu – apscheduler BackgroundScheduler() process is not running in the background
I am working on a project. Below are the files from which the problem resides. cli.py import click from apscheduler.schedulers.background import BackgroundScheduler scheduler = BackgroundScheduler(daemon=True) def func(): print("scheduler running with interval....") @click.command() @click.option('--interval', type=int, default=5, help='Interval for the scheduler in…