Files
fuel-devops/devops/helpers/loader.py
Anton Studenov 8da7a3e3ca v3.0.0: Additional changes to helpers
- Class loader
- Rewritten IpNetworksPool class
- Added required fields to template creator (create_devops_config)
- deepgetattr
- underscored

blueprint: template-based-virtual-devops-environments
Change-Id: Ib7dc53f22daf8480da0f8d2cb62e19065a0bc3a1
2016-04-06 14:19:29 +00:00

26 lines
854 B
Python

# Copyright 2016 Mirantis, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import importlib
def load_class(path):
mod_name, obj_name = path.split(':')
mod = importlib.import_module(mod_name)
return getattr(mod, obj_name)
def get_class_path(obj):
return obj.__module__ + ':' + obj.__class__.__name__