MCPcopy Create free account
hub / github.com/dabeaz-course/python-mastery / unquote

Function unquote

Solutions/8_4/follow.py:30–34  ·  view source on GitHub ↗
(records,keylist)

Source from the content-addressed store, hash-verified

28 yield dict(zip(names,row))
29
30def unquote(records,keylist):
31 for r in records:
32 for key in keylist:
33 r[key] = r[key].strip('"')
34 yield r
35
36def convert(records,converter,keylist):
37 for r in records:

Callers 1

parse_stock_dataFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected