Files
camserver_sf/configuration/user_scripts/propagate_with_prefix.py
2023-01-23 15:34:04 +01:00

8 lines
198 B
Python

from logging import getLogger
def process(data, pulse_id, timestamp, params):
ret = dict()
prefix = params["prefix"]
for c in data.keys():
ret[prefix+c] = data[c]
return ret