:mod:`memote.suite.results.result_manager` ========================================== .. py:module:: memote.suite.results.result_manager .. autoapi-nested-parse:: Provide the memote result managers for various storage backends. .. !! processed by numpydoc !! Module Contents --------------- Classes ~~~~~~~ .. autoapisummary:: memote.suite.results.result_manager.ResultManager .. py:class:: ResultManager(**kwargs) Bases: :class:`object` Manage storage of results to JSON files. .. !! processed by numpydoc !! .. method:: store(self, result, filename, pretty=True) Write a result to the given file. :Parameters: **result** : memote.MemoteResult The dictionary structure of results. **filename** : str or pathlib.Path Store results directly to the given filename. **pretty** : bool, optional Whether (default) or not to write JSON in a more legible format. .. !! processed by numpydoc !! .. method:: load(self, filename) Load a result from the given JSON file. .. !! processed by numpydoc !!