BrightPath is a Python library designed to convert Brightway2 LCA inventories into a format that can be imported into Simapro 9.x.
Use the package manager pip to install BrightPath.
pip install brightpath
import brightpath
# Create a converter object with the path to the Brightway LCA inventory
converter = brightpath.BrigthwayConverter('path_to_inventory')
# Convert the inventory to a format compatible with Simapro 9.x
sima_inventory = converter.to_simapro()
# Save the converted inventory to a CSV file
sima_inventory.to_file('output_path')
See contributing.