gvoigt
gvoigt
writeFile() will overwrite files with the same filename. An option to append to existing files would be very nice.
I would like to run OpenLCA from outside via the python (jython) interface. But how do I do this if I don't use Eclipse? If I am correct I need...
I would like to open a database but without success ```python import os import sys # change this path so that it matches the `libs` folder of your openLCA installation...
With version 1.63, after appending the library path to the system, I could import the `DenseSolver` via ```python from org.openlca.eigen.solvers import DenseSolver ``` As of version 1.7.0 there is no...
In the product system tutorial the LCI method is selected via an interactive window ```python methodDescriptor = ModelSelectionDialog.select(ModelType.IMPACT_METHOD) ``` How can I choose a method directly in jython? How can...
I am trying to import from `org.openlca.app` to be able to build product system but get the error message ```shell ImportError: No module named app ``` Apparently I don't have...
Getting a flow from the database `elcd_3_2_greendelta_v2_16` is no problem with the following function ```python def find(db, clazz, name): """ Find something by name""" dao = Daos.createBaseDao(db, clazz) for item...