MCPcopy Index your code
hub / github.com/webpy/webpy / process_values

Function process_values

web/webapi.py:443–449  ·  view source on GitHub ↗
(values)

Source from the content-addressed store, hash-verified

441 )
442
443 def process_values(values):
444 if isinstance(values, list):
445 return [process_values(x) for x in values]
446 elif hasattr(values, "filename") and values.filename is None:
447 return values.value
448 else:
449 return values
450
451 return storage(
452 [(k, process_values(v)) for k, v in dictadd(get_req, post_req).items()]

Callers 1

rawinputFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected