Source code for bw2io.importers.ecospold1_lcia
# -*- coding: utf-8 -*-
from ..extractors import Ecospold1LCIAExtractor
from .base_lcia import LCIAImporter
from time import time
[docs]
class Ecospold1LCIAImporter(LCIAImporter):
def __init__(self, filepath, biosphere=None):
super(Ecospold1LCIAImporter, self).__init__(filepath, biosphere)
print(
"Extracted {} methods in {:.2f} seconds".format(
len(self.data), time() - start
)
)