How to use the qcelemental.util.serialization.deserialize function in qcelemental

To help you get started, we’ve selected a few qcelemental examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github MolSSI / QCFractal / qcfractal / interface / collections / dataset_view.py View on Github external
    @staticmethod
    def _deserialize_field(field: str) -> Any:
        return deserialize(field, "json")
github MolSSI / QCFractal / qcfractal / interface / collections / dataset_view.py View on Github external
            df[col] = df[col].apply(lambda element: deserialize(element, "msgpack-ext"))
github MolSSI / QCPortal / collections / dataset_view.py View on Github external
def _deserialize_data(data: np.ndarray) -> Any:
        return deserialize(data.tobytes(), "msgpack-ext")
github MolSSI / QCPortal / collections / dataset_view.py View on Github external
def _deserialize_field(field: str) -> Any:
        return deserialize(field, "json")
github MolSSI / QCFractal / qcfractal / interface / collections / dataset_view.py View on Github external
    @staticmethod
    def _deserialize_data(data: np.ndarray) -> Any:
        return deserialize(data.tobytes(), "msgpack-ext")
github MolSSI / QCPortal / collections / dataset_view.py View on Github external
            df[col] = df[col].apply(lambda element: deserialize(element, "msgpack-ext"))