Source code for aiida.restapi.translator.nodes.data.upf
# -*- coding: utf-8 -*-
###########################################################################
# Copyright (c), The AiiDA team. All rights reserved. #
# This file is part of the AiiDA code. #
# #
# The code is hosted on GitHub at https://github.com/aiidateam/aiida-core #
# For further information on the license, see the LICENSE.txt file #
# For further information please visit http://www.aiida.net #
###########################################################################
"""
Translator for upf data
"""
from aiida.restapi.translator.nodes.data import DataTranslator
[docs]
class UpfDataTranslator(DataTranslator):
"""
Translator relative to resource 'upfs' and aiida class UpfData
"""
# A label associated to the present class (coincides with the resource name)
__label__ = 'upfs'
# The AiiDA class one-to-one associated to the present class
from aiida.orm import UpfData
_aiida_class = UpfData
# The string name of the AiiDA class
_aiida_type = 'data.core.upf.UpfData'
_result_type = __label__
[docs]
@staticmethod
def get_derived_properties(node): # pylint: disable=arguments-differ
"""
:param node: node object
:returns: empty dict
"""
response = {}
return response