mirror of
https://github.com/gsi-upm/senpy
synced 2024-11-01 07:41:42 +00:00
15 lines
327 B
Python
15 lines
327 B
Python
from senpy.plugins import AnalysisPlugin
|
|
from time import sleep
|
|
|
|
|
|
class SleepPlugin(AnalysisPlugin):
|
|
def activate(self, *args, **kwargs):
|
|
sleep(self.timeout)
|
|
|
|
def analyse_entry(self, entry, params):
|
|
sleep(float(params.get("timeout", self.timeout)))
|
|
yield entry
|
|
|
|
def test(self):
|
|
pass
|