mirror of
				https://github.com/gsi-upm/senpy
				synced 2025-10-31 15:38:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			293 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			293 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
 |