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

Last updated: May 11,2024

1. Install "python2-APScheduler" package

Please follow the instructions below to install python2-APScheduler on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install python2-APScheduler

2. Uninstall "python2-APScheduler" package

This guide covers the steps necessary to uninstall python2-APScheduler on openSUSE Leap:

$ sudo zypper remove python2-APScheduler

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

Information for package python2-APScheduler:
--------------------------------------------
Repository : Main Repository
Name : python2-APScheduler
Version : 3.6.3-bp153.1.21
Arch : noarch
Vendor : openSUSE
Installed Size : 391,3 KiB
Installed : No
Status : not installed
Source package : python-APScheduler-3.6.3-bp153.1.21.src
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