How to Install and Uninstall python3-APScheduler Package on openSUSE Leap

Last updated: May 18,2024

1. Install "python3-APScheduler" package

This guide let you learn how to install python3-APScheduler on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install python3-APScheduler

2. Uninstall "python3-APScheduler" package

This tutorial shows how to uninstall python3-APScheduler on openSUSE Leap:

$ sudo zypper remove python3-APScheduler

3. Information about the python3-APScheduler package on openSUSE Leap

Information for package python3-APScheduler:
--------------------------------------------
Repository : Main Repository
Name : python3-APScheduler
Version : 3.6.3-bp155.2.9
Arch : noarch
Vendor : openSUSE
Installed Size : 498.9 KiB
Installed : No
Status : not installed
Source package : python-APScheduler-3.6.3-bp155.2.9.src
Upstream URL : https://github.com/agronholm/apscheduler
Summary : In-process task scheduler with Cron-like capabilities
Description :
Advanced Python Scheduler (APScheduler) is an in-process task
scheduler that lets you schedule jobs (functions or any python callables) to be
executed at any time of your choosing.
This can be an alternative to externally run cron scripts for
long-running applications (e.g. web applications), as it is platform neutral
and can access the application's variables and functions.
APscheduler provides multiple job stores.
* Configurable scheduling mechanisms (triggers):
* Cron-like scheduling
* Delayed scheduling of single run jobs (like the UNIX "at" command)
* Interval-based (run a job at specified time intervals)
* Multiple, simultaneously active job stores:
* RAM
* File-based simple database (shelve)
* SQLAlchemy (any supported RDBMS works)
* MongoDB