MCPcopy Create free account
hub / github.com/internetarchive/openlibrary / storify

Function storify

openlibrary/plugins/admin/code.py:526–532  ·  view source on GitHub ↗
(d)

Source from the content-addressed store, hash-verified

524
525
526def storify(d):
527 if isinstance(d, dict):
528 return web.storage((k, storify(v)) for k, v in d.items())
529 elif isinstance(d, list):
530 return [storify(v) for v in d]
531 else:
532 return d
533
534
535def get_counts():

Callers 5

process_changeFunction · 0.85
get_solr_works_asyncFunction · 0.85
generic_carouselFunction · 0.85
get_countsFunction · 0.85
get_admin_statsFunction · 0.85

Calls 1

itemsMethod · 0.45

Tested by

no test coverage detected