mirror of
https://github.com/evilhero/mylar
synced 2024-12-26 09:36:53 +00:00
69eeb9b49d
Update bs4 to latest version to fix issues Get clean modules using `pip install --upgrade --target=lib` Move cherrypy, mako, pystun, bs4 into lib directory
25 lines
484 B
Python
25 lines
484 B
Python
"""
|
|
Stores jobs in an array in RAM. Provides no persistence support.
|
|
"""
|
|
|
|
from apscheduler.jobstores.base import JobStore
|
|
|
|
|
|
class RAMJobStore(JobStore):
|
|
def __init__(self):
|
|
self.jobs = []
|
|
|
|
def add_job(self, job):
|
|
self.jobs.append(job)
|
|
|
|
def update_job(self, job):
|
|
pass
|
|
|
|
def remove_job(self, job):
|
|
self.jobs.remove(job)
|
|
|
|
def load_jobs(self):
|
|
pass
|
|
|
|
def __repr__(self):
|
|
return '<%s>' % (self.__class__.__name__)
|