Skip to content

Python API Reference

This reference is generated from the installed package. Run python scripts/gen_api_md.py to regenerate.

How values are reduced within a bucket.

SUM_QUANTITY - sum of quantities (default). COUNT - number of matching entries. SHARE - each bucket’s percentage of the filtered total (0..100).

What the /aggregate primitive groups over.

DIRECT - direct exchanges of the activity. SUPPLY_CHAIN - the upstream activities reachable via cumulative flow. BIOSPHERE - only biosphere flows in the supply chain. CONSUMPTION - every scaled technosphere edge (who consumes what, in scaled units); the scope that answers “total X consumed upstream” without double counting, via filter_consumer_not.

Direction of a biosphere exchange.

RESOURCE - extraction from the environment (input). EMISSION - release to the environment (output).

Lookup is case-insensitive (BioDirection("emission") works): the engine reads the wire value that way, so the client should not be stricter than the server it speaks for.

HTTP client for the VoLCA HTTP API.

Usage::

c = Client(db="agribalyse-3.2", password="1234")
plants = c.search_activities(name="at plant")
chain = c.get_supply_chain(plants[0].process_id, name="at farm")

Substitutions can be passed to get_supply_chain, get_inventory, and get_impacts to compute results with a different upstream supplier - fast::

subs = [{"from": old_pid, "to": new_pid, "consumer": consumer_pid}]
result = c.get_impacts(pid, method_id=mid, substitutions=subs)

Constructor: Client(base_url: str = 'http://localhost:8080', db: str = '', password: str = '')

Client.add_dependency(dep_name: str, db_name: str | None = None) -> dict
Section titled “Client.add_dependency(dep_name: str, db_name: str | None = None) -> dict”

Declare dep_name as a dependency of the target database.

Returns the engine’s DatabaseSetupInfo dict describing the updated dependency topology.

Client.aggregate(process_id: str, scope: AggregateScope | str, *, is_input: bool | None = None, max_depth: int | None = None, filter_name: str | None = None, filter_name_not: list[str] | str | None = None, filter_unit: str | None = None, preset: str | None = None, filter_classification: list[ClassificationFilter] | None = None, filter_target_name: str | None = None, filter_consumer: str | None = None, filter_consumer_not: list[str] | str | None = None, filter_is_reference: bool | None = None, group_by: str | None = None, aggregate: AggregateOp | str | None = None) -> AggregateResult
Section titled “Client.aggregate(process_id: str, scope: AggregateScope | str, *, is_input: bool | None = None, max_depth: int | None = None, filter_name: str | None = None, filter_name_not: list[str] | str | None = None, filter_unit: str | None = None, preset: str | None = None, filter_classification: list[ClassificationFilter] | None = None, filter_target_name: str | None = None, filter_consumer: str | None = None, filter_consumer_not: list[str] | str | None = None, filter_is_reference: bool | None = None, group_by: str | None = None, aggregate: AggregateOp | str | None = None) -> AggregateResult”

SQL-group-by aggregation over direct exchanges, supply chain, or biosphere flows.

Args: scope: :class:AggregateScope member (DIRECT / SUPPLY_CHAIN / BIOSPHERE / CONSUMPTION) or the equivalent wire string. Strings are accepted for one-liner ergonomics but bypass static checking. CONSUMPTION rows are scaled technosphere edges - use it for “total X consumed upstream” questions. Net electricity without grid double counting::

aggregate(pid, "consumption", filter_name="electricity",
filter_consumer_not=["electricity"])
Grass eaten by cattle across the whole chain::
aggregate(pid, "consumption", filter_name="grass",
filter_consumer="cattle")
filter_consumer: substring match on the consuming activity's name
(``CONSUMPTION`` scope only).
filter_consumer_not: exclude edges whose consumer name contains
any of these substrings (list or comma-separated string).
Items always split on commas on the wire, so a name that
itself contains a comma ("electricity production, hard
coal") becomes two independent substrings - use a
comma-free fragment of the name instead.
group_by: omit for a single-bucket result (just the totals).
Supported keys: ``"name"``, ``"flow_id"``, ``"name_prefix"``,
``"unit"``, ``"location"``, ``"target_name"``,
``"consumer_name"`` (``CONSUMPTION`` scope),
``"classification.<system>"``.
aggregate: :class:`AggregateOp` member or wire string
(``"sum_quantity"`` - default, ``"count"``, or ``"share"``).
Client.call(operation_id: str, **kwargs) -> Any
Section titled “Client.call(operation_id: str, **kwargs) -> Any”

Escape hatch: call any OpenAPI operation by operationId.

Returns the raw JSON (no dataclass wrapping). Use this for operations that don’t have an ergonomic wrapper yet, or for new endpoints added after the installed pyvolca was released.

Client.compute_sensitivity(process_id: str, method_id: str, perturbations: list[dict], *, collection: str = 'methods') -> SensitivityResult
Section titled “Client.compute_sensitivity(process_id: str, method_id: str, perturbations: list[dict], *, collection: str = 'methods') -> SensitivityResult”

How much one impact score moves when technosphere links are perturbed.

Each perturbation is a dict {"consumer": pid, "supplier": pid, "delta": -0.05, "label"?: str}: delta is relative (the coefficient becomes a * (1 + delta), so -1.0 removes the link). Returns the baseline :class:LCIAResult plus one :class:PerturbedResult per perturbation - each carrying either the perturbed impact and its delta, or an error string when that perturbation could not be resolved.

Client.copy_database(new_name: str, db_name: str | None = None) -> dict
Section titled “Client.copy_database(new_name: str, db_name: str | None = None) -> dict”

Copy a loaded database in memory under a new name.

new_name is a path segment; the source defaults to self.db. Returns the engine’s ActivateResponse dict ({"success", "message", "database"?}). Raises VoLCAError if the engine reports success=false.

Client.create_activities(activities: list[ActivityInput] | ActivityInput, db_name: str | None = None) -> dict
Section titled “Client.create_activities(activities: list[ActivityInput] | ActivityInput, db_name: str | None = None) -> dict”

Write new activities into a database that can hold them.

Each activity’s process_id is minted by the engine from its name, location, product name and product unit - you do not choose it - and comes back in written. Writing the same activity twice is therefore a conflict, not a second row; use :meth:replace_activity to correct one that is already there.

Only a database of your own accepts writes: one you uploaded, or a copy. A database the engine reads from its configuration is background data the whole installation shares, and is refused.

A batch is judged as a whole. If anything is wrong the engine reports every complaint at once and writes nothing, so a ten-line inventory is fixed in one round trip.

Returns {"written": [process_id], "transient": bool, "warnings": [...]}. transient is true when the edit lives in memory only; warnings carries what the engine wants you to know but would not refuse over (a brand-new biosphere flow no method characterizes yet, for one).

Needs an engine speaking wire revision 5 (the routes do not exist before it, and an absent route is a 404 that reads exactly like a misspelled database name).

Client.delete_activities(*, name: str = '', location: str = '', product: str = '', classifications: list[dict | tuple] | None = None, exact: bool = False, keep: list[str] | None = None, extra: list[str] | None = None, ids: list[str] | None = None, db_name: str | None = None) -> dict
Section titled “Client.delete_activities(*, name: str = '', location: str = '', product: str = '', classifications: list[dict | tuple] | None = None, exact: bool = False, keep: list[str] | None = None, extra: list[str] | None = None, ids: list[str] | None = None, db_name: str | None = None) -> dict”

Delete activities selected by filter - or exactly the ids list.

Builds a DeleteSelectionRequest: the filter fields select the whole matching set, keep spares matched process ids, and extra adds ones the filter missed. classifications is a list of {"system", "value", "exact"} dicts or (system, value, exact) tuples.

ids names the selection verbatim instead of filtering; the filter arguments (and exact) must then stay unset - the two modes are exclusive, mirroring the engine. Needs an engine speaking wire revision 3 (>= v0.9.3): an older one would silently drop the unknown ids key and read the request as an empty filter - “everything” - so pyvolca refuses to send it rather than let the engine guess.

Returns the DeleteSelectionResponse dict ({"success", "message", "deleted"}); raises VoLCAError on success=false.

Client.delete_database(db_name: str | None = None) -> dict
Section titled “Client.delete_database(db_name: str | None = None) -> dict”

Delete a database entirely: unload it and remove its uploaded files.

Returns the ActivateResponse dict; raises VoLCAError on success=false.

Client.delete_method_collection(name: str) -> dict
Section titled “Client.delete_method_collection(name: str) -> dict”

Delete a method collection: unload it and remove its staged file.

Client.delete_reference_data(kind: RefDataKind, name: str) -> dict
Section titled “Client.delete_reference_data(kind: RefDataKind, name: str) -> dict”

Delete a reference-data set of kind and remove its staged file.

Client.download_flow_synonyms(name: str) -> bytes
Section titled “Client.download_flow_synonyms(name: str) -> bytes”

Download a flow-synonyms set as its raw CSV bytes.

Raises VoLCAError on an HTTP error (e.g. the set does not exist).

Client.edit_exchanges(process_id: str, *, remove: Sequence[ExchangeSelector] = (), set_amounts: Sequence[SetAmount] = (), add_inputs: Sequence[TechInput] = (), add_biosphere: Sequence[BioExchange] = (), add_waste_outputs: Sequence[WasteOutput] = (), db_name: str | None = None) -> dict
Section titled “Client.edit_exchanges(process_id: str, *, remove: Sequence[ExchangeSelector] = (), set_amounts: Sequence[SetAmount] = (), add_inputs: Sequence[TechInput] = (), add_biosphere: Sequence[BioExchange] = (), add_waste_outputs: Sequence[WasteOutput] = (), db_name: str | None = None) -> dict”

Change what one activity consumes and emits, keeping the activity.

This reaches what :meth:replace_activity cannot: an activity that came in from a database file. Its identity was minted by whichever parser read it, so no description addresses it - and a description could not carry back its classification, synonyms, parameters, pedigree or coproducts anyway. Here you name only the lines that change, and everything else stays as it was.

Only the inventory side is addressable. The reference product and any coproduct carry the activity’s identity and its allocation, so no selector reaches them.

A selector that names nothing is refused rather than treated as done. One that names several lines applies to all of them, and the counts come back per selector, in the order you stated them::

{"removed": [2], "amountsSet": [], "added": 1,
"transient": False, "warnings": [...]}

Only a database of your own accepts edits - copy a configured one first.

Needs an engine speaking wire revision 7.

Client.ensure_database(source: str | Path | bytes, name: str | None = None) -> str
Section titled “Client.ensure_database(source: str | Path | bytes, name: str | None = None) -> str”

Idempotently make the archive at source a loaded database.

The one-call form of the upload lifecycle: match by display name (default: the file’s stem), upload only when absent, finalize the staged copy, load if unloaded. Returns the slug every later call targets - run it at the top of a script and it converges on the same loaded database every time instead of re-uploading. A match that is already loaded - even partially linked - is left untouched.

A staged copy that is not ready to finalize raises VoLCAError naming the blocker (missing suppliers, no activities parsed) - fix it with :meth:add_dependency or :meth:set_data_path, then :meth:finalize_database. The gate also holds on re-runs: an upload left staged by an earlier failed run goes through the same readiness check instead of being loaded half-linked.

Client.explain_cf(method_id: str, flow_id: str) -> ExplainCFResult
Section titled “Client.explain_cf(method_id: str, flow_id: str) -> ExplainCFResult”

Explain why one flow scores with the characterization factor it does.

result.explanation is a list of sentences written by the engine: show them as they are. The structured fields say the same thing in a form you can compare or filter on, and result.steps_tried lists the rungs the cascade walked before the one that answered.

Client.export_database(fmt: str, db_name: str | None = None) -> bytes
Section titled “Client.export_database(fmt: str, db_name: str | None = None) -> bytes”

Export a loaded database, returning the serialized bytes.

fmt is one of simapro|ecospold1|ecospold2|ilcd|brightway - validated client-side; an unknown value raises VoLCAError before any request. Single-file formats carry their bytes directly; EcoSpold 2 / ILCD multi-file trees come back zipped.

The engine streams the payload as raw bytes. Best-effort approximation warnings arrive in the X-Volca-Export-Warnings response header (percent-encoded, newline-joined) and are surfaced through :mod:warnings. Raises VoLCAError on an HTTP error.

Client.export_method_collection(name: str, fmt: str = 'simapro') -> bytes
Section titled “Client.export_method_collection(name: str, fmt: str = 'simapro') -> bytes”

Export a loaded method collection, returning the serialized bytes.

fmt names the target format: simapro (SimaPro method CSV), csv (columnar CSV - one column per impact category, the spreadsheet view), openlca (a zip of openLCA JSON-LD impact categories), or ilcd (a zip of an ILCD LCIA-method package - one method dataset per impact category plus its flow datasets). Projection warnings (anything the format cannot carry faithfully) arrive in the X-Volca-Export-Warnings response header and are surfaced through :mod:warnings. Raises VoLCAError on an HTTP error, including a collection that is not loaded.

Client.export_to_file(fmt: str, out_path: str, db_name: str | None = None) -> None
Section titled “Client.export_to_file(fmt: str, out_path: str, db_name: str | None = None) -> None”

Export a database (see :meth:export_database) and write it to a file.

Client.finalize_database(db_name: str | None = None) -> dict
Section titled “Client.finalize_database(db_name: str | None = None) -> dict”

Build matrices for a staged database and load it (ActivateResponse).

Call after dependencies resolve (:meth:get_setup reports isReady). Raises VoLCAError if the engine reports success=false (e.g. unresolved suppliers).

Client.get_activity(process_id: str) -> ActivityDetail
Section titled “Client.get_activity(process_id: str) -> ActivityDetail”

Fetch an activity’s full detail.

Returns a typed ActivityDetail. Use act.inputs / act.outputs / act.technosphere_inputs to filter exchanges instead of walking act.exchanges directly.

Client.get_characterization(method_id: str, *, flow: str | None = None, limit: int | None = None) -> CharacterizationResult
Section titled “Client.get_characterization(method_id: str, *, flow: str | None = None, limit: int | None = None) -> CharacterizationResult”

Look up characterization factors for a method matched to database flows.

Returns a :class:CharacterizationResult carrying matches (total rows the filter selected) and shown (rows actually returned under limit). Check result.has_more to detect truncation.

Client.get_collection_coverage(collection: str, db_name: str | None = None) -> CollectionCoverage
Section titled “Client.get_collection_coverage(collection: str, db_name: str | None = None) -> CollectionCoverage”

How much of a database a whole method collection characterizes.

Counts the distinct emission and resource flows at least one of the collection’s methods resolves a factor for, with the same lookup scoring uses. Distinct across methods - their factors overlap, so the per-method figures from :meth:get_mapping_status do not add up to this number.

Client.get_consumers(process_id: str, *, name: str | None = None, location: str | None = None, product: str | None = None, preset: str | None = None, classification_filters: list[ClassificationFilter] | None = None, page: int | None = None, page_size: int | None = None, limit: int | None = None, offset: int | None = None, max_depth: int | None = None, sort: str | None = None, order: str | None = None, include_edges: bool = False) -> ConsumersResponse
Section titled “Client.get_consumers(process_id: str, *, name: str | None = None, location: str | None = None, product: str | None = None, preset: str | None = None, classification_filters: list[ClassificationFilter] | None = None, page: int | None = None, page_size: int | None = None, limit: int | None = None, offset: int | None = None, max_depth: int | None = None, sort: str | None = None, order: str | None = None, include_edges: bool = False) -> ConsumersResponse”

Find all activities that transitively consume this supplier.

Args: max_depth: Max hops from supplier. 1 = direct consumers only. classification_filters: ClassificationFilter entries restricting the results. Multiple filters are AND-combined by the server. Mode is :class:MatchMode.EXACT or :class:MatchMode.CONTAINS. sort: Sort key - "name", "location", "product", "amount", or "unit". Default orders by depth. order: "desc" to reverse; ascending otherwise. include_edges: When True, the response carries every technosphere edge whose endpoints are both reachable from the supplier. Callers can walk these to reconstruct supplier→consumer paths without a second get_path_to round-trip.

Returns a :class:ConsumersResponse whose consumers attribute is a :class:SearchResults[ConsumerResult] (iterate it to walk every consumer across all pages) and whose edges attribute carries the traversal subgraph (empty by default).

Client.get_contributing_activities(process_id: str, method_id: str, *, collection: str = 'methods', limit: int | None = None) -> ContributingActivities
Section titled “Client.get_contributing_activities(process_id: str, method_id: str, *, collection: str = 'methods', limit: int | None = None) -> ContributingActivities”

Which upstream activities drive a given impact category.

Same engine-side limitation as :meth:get_contributing_flows: no total exposed, so has_more cannot be derived. Inspect share_pct totals to gauge coverage.

Client.get_contributing_flows(process_id: str, method_id: str, *, collection: str = 'methods', limit: int | None = None) -> ContributingFlows
Section titled “Client.get_contributing_flows(process_id: str, method_id: str, *, collection: str = 'methods', limit: int | None = None) -> ContributingFlows”

Which elementary flows drive a given impact category.

Returns a :class:ContributingFlows. Caveat: the engine does not report the total flow count, so pyvolca cannot derive has_more from the response. Pass a generous limit if you need exhaustive coverage and inspect share_pct totals.

Client.get_flow(flow_id: str, db_name: str | None = None) -> FlowDetail
Section titled “Client.get_flow(flow_id: str, db_name: str | None = None) -> FlowDetail”

Detail of one flow: its record, unit, and how many exchanges use it.

Client.get_flow_activities(flow_id: str, db_name: str | None = None) -> list[Activity]
Section titled “Client.get_flow_activities(flow_id: str, db_name: str | None = None) -> list[Activity]”

Activities that produce or consume a given flow.

Client.get_flow_mapping(method_id: str) -> FlowMapping
Section titled “Client.get_flow_mapping(method_id: str) -> FlowMapping”

Get the characterization-factor-to-database-flow mapping coverage.

:class:FlowMapping.coverage_pct summarises how many of the DB’s biosphere flows the method has a CF for; flows is the per-flow breakdown including unmatched rows (cf_value=None).

Client.get_impacts(process_id: str, method_id: str, *, collection: str = 'methods', top_flows: int | None = None, substitutions: list[SubstitutionLike] | None = None) -> LCIAResult
Section titled “Client.get_impacts(process_id: str, method_id: str, *, collection: str = 'methods', top_flows: int | None = None, substitutions: list[SubstitutionLike] | None = None) -> LCIAResult”

Compute the LCIA score for a single impact category on an activity.

Use :meth:get_impacts_batch to retrieve every category in a method collection at once (and any configured scoring sets).

Args: collection: Method collection name. Defaults to "methods" for single-method calls; most engines expose methods under a single collection. top_flows: Max top contributing flows to return (default 5).

Client.get_impacts_batch(process_id: str, *, collection: str = 'methods', substitutions: list[SubstitutionLike] | None = None, exclude_long_term: bool | None = None) -> LCIABatchResult
Section titled “Client.get_impacts_batch(process_id: str, *, collection: str = 'methods', substitutions: list[SubstitutionLike] | None = None, exclude_long_term: bool | None = None) -> LCIABatchResult”

Compute LCIA for every impact category in a collection, in one call.

The response carries the per-method :class:LCIAResult list plus any formula-based scoring sets declared in the engine config (PEF, ECS…). scoring_indicators gives the per-variable breakdown of each scoring set, pre-multiplied by the set’s displayMultiplier. exclude_long_term drops long-term emissions before scoring, the same switch :meth:score_activities carries.

Uses a direct HTTP call: the batch endpoint has no operationId in the OpenAPI spec (the dispatcher primary is the single-method variant), so this wrapper bypasses _call and builds the URL itself.

Client.get_inputs(process_id: str) -> list[Exchange]
Section titled “Client.get_inputs(process_id: str) -> list[Exchange]”

Return the input exchanges of an activity (richer metadata than get_activity).

Uses a direct HTTP call because /inputs has no operationId (it’s a non-Resources auxiliary endpoint).

Client.get_inventory(process_id: str, *, flow: str | None = None, limit: int | None = None, substitutions: list[SubstitutionLike] | None = None) -> InventoryResult
Section titled “Client.get_inventory(process_id: str, *, flow: str | None = None, limit: int | None = None, substitutions: list[SubstitutionLike] | None = None) -> InventoryResult”

Compute the life-cycle inventory (cumulative biosphere flows) for an activity.

Returns an :class:InventoryResult with the per-elementary-flow totals scaled to one functional unit of the activity’s reference product. Use :meth:get_impacts to apply a characterization method to the inventory; use :meth:aggregate with scope="biosphere" for grouped views.

Args: flow: Substring filter on flow name. limit: Cap on returned flow rows. (Server returns full inventory otherwise - the engine doesn’t paginate this endpoint.) substitutions: Upstream supplier swaps; see :meth:get_supply_chain.

Client.get_mapping_status(method_id: str, db_name: str | None = None) -> MappingStatus
Section titled “Client.get_mapping_status(method_id: str, db_name: str | None = None) -> MappingStatus”

How well a method’s factors map onto a database’s biosphere flows.

Reports the cascade breakdown (matched by UUID / CAS / name / synonym), the coverage fraction, and the unmapped_flows still without a CF.

Client.get_method(method_id: str) -> MethodDetail
Section titled “Client.get_method(method_id: str) -> MethodDetail”

Detail of one LCIA method: unit, category, methodology, factor count.

Client.get_method_factors(method_id: str) -> list[MethodFactor]
Section titled “Client.get_method_factors(method_id: str) -> list[MethodFactor]”

The characterization factors of a method (flow, direction, value).

Client.get_outputs(process_id: str) -> list[Exchange]
Section titled “Client.get_outputs(process_id: str) -> list[Exchange]”

Return the output exchanges of an activity. See :meth:get_inputs for notes.

Client.get_path_to(process_id: str, target: str) -> PathResult
Section titled “Client.get_path_to(process_id: str, target: str) -> PathResult”

Find the shortest upstream path from process to first activity whose name matches target.

Returns a PathResult whose path is ordered root → target. Each step includes cumulative_quantity, scaling_factor, and (except the root) local_step_ratio.

Client.get_setup(db_name: str | None = None) -> dict
Section titled “Client.get_setup(db_name: str | None = None) -> dict”

Setup status of a staged or loaded database (DatabaseSetupInfo).

Key fields: isReady (can it be finalized/loaded), missingSuppliers and unresolvedLinks (unmet cross-database links), dependencies (declared deps), dataPath / availablePaths (the selected data file and the alternatives - see :meth:set_data_path), completeness.

Return the engine’s runtime statistics (memory use, loaded sizes).

Keys are already snake_case on the wire, so this returns the raw dict.

Client.get_supply_chain(process_id: str, *, name: str | None = None, location: str | None = None, limit: int | None = None, min_quantity: float | None = None, max_depth: int | None = None, preset: str | None = None, classification_filters: list[ClassificationFilter] | None = None, sort: str | None = None, order: str | None = None, substitutions: list[SubstitutionLike] | None = None, include_edges: bool | None = None) -> SupplyChain
Section titled “Client.get_supply_chain(process_id: str, *, name: str | None = None, location: str | None = None, limit: int | None = None, min_quantity: float | None = None, max_depth: int | None = None, preset: str | None = None, classification_filters: list[ClassificationFilter] | None = None, sort: str | None = None, order: str | None = None, substitutions: list[SubstitutionLike] | None = None, include_edges: bool | None = None) -> SupplyChain”

Get the flat supply chain of an activity.

Returns a :class:SupplyChain. Check result.has_more to detect when limit truncated entries below filtered_activities - further downstream analysis on a truncated chain would be wrong without flagging the gap.

Args: max_depth: Max hops from root. 1 = direct inputs only. classification_filters: Restrict entries to those matching any of the given ClassificationFilter triples. Multiple filters are AND-combined by the server. sort: Sort key - "name", "location", "unit", "depth", "consumers", or "amount". Default orders by descending absolute quantity. order: "desc" to reverse; ascending otherwise. substitutions: When provided, the call is upgraded to POST and the scaling vector is recomputed with the substituted suppliers. Accepts :class:Substitution (preferred) or the legacy {"from", "to", "consumer"} dict form; consumer is optional - omit it for a global swap.

Client.get_synonym_groups(name: str) -> list[list[str]]
Section titled “Client.get_synonym_groups(name: str) -> list[list[str]]”

Return the synonym groups of a flow-synonyms set (lists of aliases).

Fetch the recursive activity tree used by the analysis SPA.

/tree has no operationId in the OpenAPI spec - it’s kept for the SPA’s lazy-expanding graph widget and intentionally not exposed as a Resource. Included here as a direct HTTP call for scripts that need the same shape.

Return server build metadata: version, git hash/tag, build target.

Uses a direct HTTP call - /api/v1/version has no operationId since it predates the Resources ADT.

List classification systems and their values for the current database.

ClassificationSystem.activity_count tells how widely each system is populated - useful for picking a filter dimension with enough signal.

List every database declared in the engine config.

The typed entries carry depends_on, so callers can derive cross-DB dependency sets from declared topology rather than hardcoding allowlists.

List every method collection the engine knows (loaded or staged).

Each entry carries name, displayName, status, methodCount and format.

List every LCIA method available in the engine.

Each :class:Method carries id, name, category, unit, factor_count, and the parent collection. Pass m.id to :meth:get_impacts as method_id.

List classification presets configured in this instance.

Each :class:Preset carries its filters (list of :class:PresetFilter triples). Apply by passing preset=p.name to filtering endpoints.

Client.list_reference_data(kind: RefDataKind) -> list[dict]
Section titled “Client.list_reference_data(kind: RefDataKind) -> list[dict]”

List reference-data sets of one kind (loaded, staged, or built-in).

Each entry carries name, displayName, status, isAuto (a built-in bundled set) and entryCount.

Client.load_database(db_name: str) -> dict
Section titled “Client.load_database(db_name: str) -> dict”

Load a database into memory so it answers queries.

Declared dependencies are loaded first; has no effect if the database is already loaded.

Client.load_method_collection(name: str) -> dict
Section titled “Client.load_method_collection(name: str) -> dict”

Load a staged method collection so its methods become available.

Client.load_reference_data(kind: RefDataKind, name: str) -> dict
Section titled “Client.load_reference_data(kind: RefDataKind, name: str) -> dict”

Load a staged reference-data set of kind into memory.

Fetch the OpenAPI spec from the server and refresh the dispatch table.

Also regenerates the .pyi type stubs in the installed pyvolca package directory so IDE autocomplete reflects the current engine. Useful when the engine is upgraded without reinstalling pyvolca.

This is the explicit “the engine was upgraded” path - the likeliest place to meet a wire change - so it forgets the cached wire and re-runs the gate against the live engine before fetching a spec pyvolca can’t decode. Without the reset, a client that first met an older engine would keep refusing wire-gated capabilities after an in-place upgrade.

Client.relink(dep_db: str, mapping_csv: str, db_name: str | None = None) -> dict
Section titled “Client.relink(dep_db: str, mapping_csv: str, db_name: str | None = None) -> dict”

Re-link a database against a dependency using a name→name alias CSV.

mapping_csv is the CSV text (header row + source/target columns), sent inline so the engine needs no filesystem access. Returns the RelinkResponse dict ({"dbName", "unresolvedBefore", "unresolvedAfter", "crossDBLinks", "dependsOn"}).

Section titled “Client.relink_from_file(dep_db: str, mapping_path: str, db_name: str | None = None) -> dict”

Read a mapping CSV file and call :meth:relink with its text.

Client.remove_dependency(dep_name: str, db_name: str | None = None) -> dict
Section titled “Client.remove_dependency(dep_name: str, db_name: str | None = None) -> dict”

Remove dep_name from the target database’s dependencies.

Returns the updated DatabaseSetupInfo dict.

Client.replace_activity(process_id: str, activity: ActivityInput, db_name: str | None = None) -> dict
Section titled “Client.replace_activity(process_id: str, activity: ActivityInput, db_name: str | None = None) -> dict”

Rewrite one activity the database already holds, keeping its identity.

process_id must be the identity activity mints to - that is, the name, location, product name and product unit must be the ones the row already has. Change any of those and you are describing a different activity, which the engine refuses rather than writing to a second row; create that one and delete the old one instead.

Returns the same shape as :meth:create_activities.

Client.resolve_activities(names: Iterable[str], *, by: Literal['name', 'product'] = 'name', geo: str | None = None, exact: bool = True, limit: int = 5, workers: int = 8) -> dict[str, list[Activity]]
Section titled “Client.resolve_activities(names: Iterable[str], *, by: Literal['name', 'product'] = 'name', geo: str | None = None, exact: bool = True, limit: int = 5, workers: int = 8) -> dict[str, list[Activity]]”

Resolve a batch of names to their matching activities, concurrently.

One :meth:search_activities call per unique name, fanned out over workers threads on the client’s HTTP session. This replaces the two patterns scripts keep hand-rolling: downloading the whole database to build a name→process_id dict, and per-name thread pools.

The result maps every input name to its matches - the mapping is total, so misses are visible, never silently dropped:

  • [] - no match; the name does not resolve.
  • one :class:Activity - unambiguous; matches[0].process_id.
  • several - ambiguous (same name across geographies or products); disambiguate with geo= or inspect the candidates.

With exact=False matches are relevance-ranked (best first), so matches[0] is the engine’s best fuzzy guess.

Args: names: Names to resolve. Duplicates are searched once. by: Match against activity "name" or reference "product". geo: Restrict every search to one geography code. exact: Exact (default) or substring/ranked matching. limit: Maximum candidates returned per name. workers: Concurrent searches.

Returns: {name: matches} for every input name, in input order.

Client.score_activities(process_ids: list[str], *, collection: str = 'methods', top_flows: int | None = None, exclude_long_term: bool | None = None) -> BatchScores
Section titled “Client.score_activities(process_ids: list[str], *, collection: str = 'methods', top_flows: int | None = None, exclude_long_term: bool | None = None) -> BatchScores”

Score many processes in one call (every category of a collection each).

Returns a :class:BatchScores: results holds one :class:ScoredActivity per process the engine could compute, while not_found / invalid list the ids it could not resolve - inspect them, a partial result is not an error. top_flows caps the top contributors per category; exclude_long_term drops long-term emissions from the totals.

Client.search_activities(name: str | None = None, *, geo: str | None = None, product: str | None = None, preset: str | None = None, classification: str | None = None, classification_value: str | None = None, classification_match: MatchModeLike | None = None, page: int | None = None, page_size: int | None = None, limit: int | None = None, offset: int | None = None, sort: str | None = None, order: str | None = None, exact: bool = False) -> SearchResults[Activity]
Section titled “Client.search_activities(name: str | None = None, *, geo: str | None = None, product: str | None = None, preset: str | None = None, classification: str | None = None, classification_value: str | None = None, classification_match: MatchModeLike | None = None, page: int | None = None, page_size: int | None = None, limit: int | None = None, offset: int | None = None, sort: str | None = None, order: str | None = None, exact: bool = False) -> SearchResults[Activity]”

Search activities in the current database.

All filters are AND-combined and case-insensitive. name and product match by substring unless exact=True.

Returns a paginated :class:SearchResults - iterate it to walk every match across all pages (subsequent pages fetched on demand), or use .page(n) for explicit page access. len(results) is the server-reported total across all pages.

Args: name: Substring (or exact match) on activity name. geo: Geography code ("FR", "GLO", "RoW"…). product: Substring on the reference product name. preset: Apply a named classification preset configured in the engine. classification: System name ("ISIC rev.4 ecoinvent"). classification_value: Substring within that system’s value. classification_match: How classification_value is compared - :class:MatchMode.CONTAINS (default, substring) or :class:MatchMode.EXACT (case-insensitive equality). Ignored when classification is unset. page: 1-based page number. Must be paired with page_size - offset cannot be derived from page alone. page_size: Items per page (becomes the wire-level limit). Alone (no page) means “page 1 with this size”. limit: Wire-level cap on returned items. Prefer page_size. offset: Wire-level starting index. Prefer page + page_size. sort: Sort key - "name" or "location". When set, results are ordered lexicographically instead of by relevance. order: "desc" to reverse; ascending otherwise. exact: When True, name and product are matched exactly.

Returns: :class:SearchResults[Activity] - iterable across all pages.

Client.search_flows(query: str | None = None, *, page: int | None = None, page_size: int | None = None, limit: int | None = None, offset: int | None = None, sort: str | None = None, order: str | None = None) -> SearchResults[Flow]
Section titled “Client.search_flows(query: str | None = None, *, page: int | None = None, page_size: int | None = None, limit: int | None = None, offset: int | None = None, sort: str | None = None, order: str | None = None) -> SearchResults[Flow]”

Search flows (technosphere products and biosphere flows) in the current database.

Returns a paginated :class:SearchResults[Flow] - iterate to walk every match across all pages, or use .page(n) for explicit access. See :meth:search_activities for the pagination contract.

Args: query: Substring matched case-insensitively against flow names. page / page_size: Web-style pagination; convert to wire-level offset / limit. limit / offset: Wire-level escape hatch. sort: Sort key - "name" (default), "category", or "unit". order: "desc" to reverse; ascending otherwise.

Client.set_data_path(path: str, db_name: str | None = None) -> dict
Section titled “Client.set_data_path(path: str, db_name: str | None = None) -> dict”

Choose which data file a staged multi-file archive should use.

path must be one of the availablePaths reported by :meth:get_setup, relative to the upload directory. Returns the updated DatabaseSetupInfo dict.

Client.unload_database(db_name: str) -> dict
Section titled “Client.unload_database(db_name: str) -> dict”

Unload a database from memory to free RAM. The disk copy is kept.

Refused if another loaded database still depends on it.

Client.unload_method_collection(name: str) -> dict
Section titled “Client.unload_method_collection(name: str) -> dict”

Unload a method collection from memory (the staged file is kept).

Client.unload_reference_data(kind: RefDataKind, name: str) -> dict
Section titled “Client.unload_reference_data(kind: RefDataKind, name: str) -> dict”

Unload a reference-data set of kind from memory.

Client.upload_database(source: str | Path | bytes, name: str, *, description: str | None = None) -> dict
Section titled “Client.upload_database(source: str | Path | bytes, name: str, *, description: str | None = None) -> dict”

Upload a database archive; stage it under a generated slug.

source is a path to a ZIP / CSV / XLSX archive (or its raw bytes); name is the display name. The engine auto-detects the format (EcoSpold 1/2, SimaPro CSV, ILCD, OpenLCA JSON-LD, Brightway Excel) and stages the database without loading it.

Returns the UploadResponse dict ({"success", "message", "slug", "format"}); slug is the name every later call targets. Then inspect :meth:get_setup, wire missing dependencies with :meth:add_dependency, and call :meth:finalize_database to build matrices and load it.

Raises VoLCAError on any rejection (uploads disabled on the plan, size cap exceeded, unreadable archive) - the engine reports these in-band with HTTP 200 and success=false.

Client.upload_method_collection(source: str | Path | bytes, name: str, *, description: str | None = None) -> dict
Section titled “Client.upload_method_collection(source: str | Path | bytes, name: str, *, description: str | None = None) -> dict”

Upload an ILCD method file as a staged method collection.

source is a path to the method archive (or its raw bytes). Same streamed-body + query-param shape as :meth:upload_database; returns the UploadResponse dict and raises VoLCAError on rejection.

Client.upload_reference_data(kind: RefDataKind, source: str | Path | bytes, name: str, *, description: str | None = None) -> dict
Section titled “Client.upload_reference_data(kind: RefDataKind, source: str | Path | bytes, name: str, *, description: str | None = None) -> dict”

Upload a reference-data CSV of kind as a staged set.

source is a path to the CSV (or its raw bytes). Same streamed-body + query-param shape as :meth:upload_database.

Return a new client targeting a different database.

Shares the underlying HTTP session, dispatch table, and any other Client-level state with the original - only db is overridden. New fields added to :meth:Client.__init__ propagate automatically (no manual mirror to keep in sync).

Lifecycle state of a database in the engine.

UNLOADED - declared in the engine config but not yet loaded. PARTIALLY_LINKED - loaded, but some cross-DB flow references could not be resolved against currently-loaded dependencies. LOADED - loaded and fully linked.

Inherits from :class:str, so dataclasses.asdict(db)["status"] serialises as the bare wire string.

How a :class:ClassificationFilter value is compared against the entry.

EXACT - case-insensitive equality. CONTAINS - case-insensitive substring. Inherits from :class:str so json.dumps(MatchMode.EXACT) and dataclasses.asdict(filter)["mode"] both serialise as the bare string "exact" / "contains".

Manages the VoLCA server process.

Usage::

with Server(config="volca.toml") as srv:
client = Client(base_url=srv.base_url, db="agribalyse-3.2", password=srv.password)
activities = client.search_activities(name="at plant")

Constructor: Server(config: str | None = 'volca.toml', port: Union[int, Literal['auto']] = 0, binary: str = 'volca')

http://localhost:<port> - pass to :class:Client(base_url=…).

Always loopback: the managed server only listens locally.

Health check - GET /api/v1/db, return True if 200.

Server.start(idle_timeout: int = 300, wait_timeout: int = 120) -> None
Section titled “Server.start(idle_timeout: int = 300, wait_timeout: int = 120) -> None”

Spawn the engine process if it is not already serving, and wait until ready.

Args: idle_timeout: Seconds without use before the engine shuts itself down. Default 5 min. An API request or a matrix solve counts as use; an MCP client merely staying connected does not. wait_timeout: How long to poll for the server to become healthy before raising :class:TimeoutError.

No-op if a healthy server is already reachable on base_url.

Stop the server via shutdown endpoint, then terminate process.

Role a technosphere exchange plays within its host activity.

REFERENCE_PRODUCT - the activity’s reference output product. COPRODUCT - a secondary output (in allocated activities). REFERENCE_INPUT - the reference input (in waste-treatment activities). INPUT - any other technosphere input.

Raised when the download or verification fails.

Error from the VoLCA API.

Constructor: VoLCAError(message: str, status_code: int | None = None, body: str = '')

One activity in a database - the row returned by /activities search.

process_id is the engine’s canonical address (activityUUID_productUUID) and is what you pass to every detail endpoint (:meth:Client.get_activity, :meth:Client.get_supply_chain, :meth:Client.get_impacts, …). activity_name is the activity name (e.g. "wheat flour, at plant"); product_name is the reference output product (e.g. "wheat flour"); product_amount and product_unit describe the functional unit (typically 1.0 of "kg" / "MJ" / etc.). location is the geography code ("FR", "GLO", "RoW"…). A process has no name of its own - compose a label from activity_name + product_name.

allocation_percent is this product’s share (0..100) of the parent activity’s exchanges in a multi-output (allocated) process - e.g. a cheese activity that also yields whey, cream and permeate gives each product its own share, summing to ~100. It is None for single-output processes. allocation_formula carries the raw symbolic formula when the source expressed the share as an expression rather than a number, else None.

FieldTypeDefault
process_idstr-
activity_namestr-
locationstr-
product_namestr-
product_amountfloat-
product_unitstr-
allocation_percentfloat | NoneNone
allocation_formulastr | NoneNone

One upstream activity’s contribution to an LCIA score.

Returned in :class:ContributingActivities.activities. share_pct is the percentage of the total impact this activity contributes (0..100).

FieldTypeDefault
process_idstr-
activity_namestr-
product_namestr-
locationstr-
contributionfloat-
share_pctfloat-

Typed wrapper around the JSON returned by GET /activity/{pid}.

Use the .inputs / .outputs / .technosphere_inputs convenience properties instead of walking the raw exchanges list.

FieldTypeDefault
process_idstr-
activity_namestr-
locationstr-
unitstr-
descriptionlist[str]-
classificationsdict[str, str]-
product_namestr | None-
product_amountfloat | None-
product_unitstr | None-
all_productslist[Activity]-
exchangeslist[Union[TechnosphereExchange, BiosphereExchange, WasteExchange]]-

This process’s own allocation share (0..100), or None.

A multi-output process splits the parent activity’s burden across its co-products; every :attr:all_products entry carries its share. This returns the share of this process - the entry whose process_id matches - and None for single-output processes.

Every input exchange - technosphere inputs and biosphere resources.

Equivalent to filtering :attr:exchanges by e.is_input. Mixed kinds: callers needing only one variant should use :attr:technosphere_inputs or filter manually.

True iff the activity splits its burden across several co-products.

Reads the structured allocation_percent the engine sets on each :attr:all_products entry (authoritative), not the description text.

Every output exchange - products and biosphere emissions.

Includes the reference product, coproducts (in allocated activities), and all biosphere emissions.

Only the technosphere inputs (ingredients from other activities).

Excludes biosphere inputs (resource extractions) and waste outputs. The common case when answering “what does this activity consume from upstream?”.

Result of compare_activities.

FieldTypeDefault
scopestr-
group_bystr-
matchedlist[ActivityDiffRow]list()
left_onlylist[ActivityDiffRow]list()
right_onlylist[ActivityDiffRow]list()

An activity as you write it - the body of :meth:Client.create_activities.

The inventory is three lists rather than one, so a field that means something on a supplier link cannot be sent on an emission.

You do not choose the process_id. The engine mints it from the name, location, product name and product unit, which is what makes writing the same activity twice a correction of one row rather than two rows. One reference product per activity: coproducts and allocation are not supported yet, and this type does not pretend they are.

FieldTypeDefault
namestr-
locationstr-
product_namestr-
product_amountfloat-
product_unitstr-
descriptionlist[str]list()
inputslist[TechInput]list()
biospherelist[BioExchange]list()
waste_outputslist[WasteOutput]list()

One matched or unmatched flow in an activity comparison.

FieldTypeDefault
keystr-
leftfloat | None-
rightfloat | None-
unitstr | None-

right - left (0 if one side is missing).

One bucket inside an AggregateResult.

FieldTypeDefault
keystr-
quantityfloat-
countint-
unitstr | NoneNone
sharefloat | NoneNone

Result of a Client.aggregate() call.

filtered_total is the sum across all items matching the filters (the top-level number). groups is the per-bucket breakdown when group_by was set; empty otherwise.

FieldTypeDefault
scopeAggregateScope-
filtered_totalfloat-
filtered_unitstr | None-
filtered_countint-
groupslist[AggregateGroup]list()

Result of :meth:Client.score_activities scoring many processes at once.

results carries one :class:ScoredActivity per process the engine computed; not_found and invalid list the process ids it could not resolve. A non-empty not_found/invalid is a partial result to inspect, not a failure.

FieldTypeDefault
resultslist[ScoredActivity]-
not_foundlist[str]-
invalidlist[str]-

One resource taken from the environment, or one emission released into it.

Name the flow one way or the other, never both: flow addresses one the database already has, and name + compartment introduce a new one. Use the two constructors rather than the fields - :meth:existing and :meth:introducing - which is why passing both or neither raises here instead of at the server.

A biosphere amount is never converted, so an exchange on an existing flow must be stated in that flow’s own unit.

FieldTypeDefault
directionBioDirection-
amountfloat-
flowstr | NoneNone
namestr | NoneNone
compartmentstr | NoneNone
sub_compartmentstr | NoneNone
unitstr | NoneNone
commentstr | NoneNone

An exchange with the environment (resource extraction or emission).

FieldTypeDefault
flow_namestr-
compartmentCompartment | None-
amountfloat-
unitstr-
directionBioDirection-
commentstr | NoneNone
is_biosphereboolTrue
is_wasteboolFalse

True for resource extractions (direction is RESOURCE).

Biosphere inputs are resource extractions; outputs are emissions to the environment.

Always False - biosphere exchanges cannot be reference flows.

The reference flow defines the functional unit and is always a technosphere product (see :class:TechnosphereExchange.is_reference).

One characterization factor matched against a database biosphere flow.

Returned in the factors list of :class:CharacterizationResult. match_strategy records how the CF was matched to the DB flow ("uuid", "cas", "name", "synonym", "fuzzy").

FieldTypeDefault
method_flow_namestr-
cf_valuefloat-
cf_unitstr-
directionstr-
db_flow_namestr-
flow_idstr-
flow_unitstr-
categorystr-
match_strategystr-
compartmentstr | NoneNone

Result of :meth:Client.get_characterization.

The engine truncates factors to shown rows (server-side limit). matches is the unfiltered total: use :attr:has_more to detect when the slice is incomplete.

FieldTypeDefault
methodstr-
unitstr-
matchesint-
shownint-
factorslist[CharacterizationFactor]list()

True when the server truncated below matches.

Filter a supply-chain/consumers query by a classification (system, value, mode).

Matches one classification system entry, e.g. ClassificationFilter("Category", "Agricultural\\Food", "exact") or ClassificationFilter("Category", "Agricultural\\Food", MatchMode.EXACT). Multiple filters are AND-combined by the server.

FieldTypeDefault
systemstr-
valuestr-
modeMatchMode<MatchMode.CONTAINS: ‘contains’>

One classification system declared by a database.

values are the distinct entries in this system; activity_count is how many activities carry at least one classification under this system (helps callers pick a worthwhile filter dimension).

FieldTypeDefault
namestr-
valueslist[str]list()
activity_countint0

Biosphere compartment (medium + optional subcompartment).

Frozen so it’s hashable and immutable - callers can use it as a dict key when grouping flows by compartment, and accidental mutation is rejected.

FieldTypeDefault
namestr-
substr | NoneNone

Activity that consumes a given supplier, with BFS depth.

FieldTypeDefault
process_idstr-
activity_namestr-
locationstr-
product_namestr-
product_amountfloat-
product_unitstr-
depthint-
classificationsdict[str, str]dict()

Reverse supply chain (/consumers) - paginated consumer list plus optional edge set. Mirrors :class:SupplyChain so callers have a uniform {entries, edges} shape in both traversal directions.

consumers is a :class:SearchResults[ConsumerResult] - iterate it to walk every consumer across all pages. edges is populated only when include_edges=True.

FieldTypeDefault
consumersSearchResults[ConsumerResult]-
edgeslist[SupplyChainEdge]list()

Top upstream activities driving an LCIA score.

Same engine-side limitation as :class:ContributingFlows: the server reports no total, so pyvolca cannot derive has_more. Pass a generous limit and inspect share_pct if exhaustive coverage matters.

FieldTypeDefault
methodstr-
unitstr-
total_scorefloat-
activitieslist[ActivityContribution]list()

Top elementary flows driving an LCIA score.

Note: the engine does not report a total - top_flows is whatever the server returned under limit, but pyvolca cannot tell whether more flows were truncated. If you need exhaustive coverage, pass a generous limit and inspect share_pct totals.

FieldTypeDefault
methodstr-
unitstr-
total_scorefloat-
top_flowslist[FlowContribution]list()

One entry of :meth:Client.list_databases.

depends_on names the databases this one links against for cross-DB flow resolution - mirrors the dependsOn list surfaced by the relink endpoint. Derived from the engine’s declared topology, not runtime state.

FieldTypeDefault
namestr-
display_namestr-
statusDatabaseStatus-
pathstr-
load_at_startupboolFalse
is_uploadedboolFalse
activity_countint0
descriptionstr | NoneNone
formatstr | NoneNone
depends_onlist[str]list()

Which lines of an inventory an edit is about.

kind is "input", "waste" or "biosphere". The first two name their provider by process id; the third names its flow by identity. There is no kind for the reference product or a coproduct: changing those changes what the activity is, which is not what an inventory edit does.

A selector may name several lines, and then it applies to all of them - :meth:Client.edit_exchanges reports how many. Naming none is refused by the engine rather than passed off as done.

FieldTypeDefault
kindstr-
providerstr | NoneNone
flowstr | NoneNone

Result of :meth:Client.explain_cf.

explanation is written by the engine: show it as it is rather than rewording the codes. The structured fields are for comparing, filtering or linking. outcome is "characterized", "conversion_refused" (a factor was found but the flow’s unit cannot be converted to its basis, so the flow scores nothing) or "no_factor".

FieldTypeDefault
methodstr-
method_unitstr-
flowExplainedFlow-
outcomestr-
explanationlist[str]list()
matchExplainedMatch | NoneNone
steps_triedlist[ExplainedStep]list()
regional_factor_countint0

The flow an explanation is about, as the cascade sees it.

FieldTypeDefault
idstr-
namestr-
unitstr-
categorystr-
compartmentstr | NoneNone
casstr | NoneNone

The factor that was served, and where it came from.

FieldTypeDefault
rungstr-
cf_valuefloat-
cf_unitstr-
method_flow_namestr-
match_strategystr-
method_casstr | NoneNone
unit_conversionstr | NoneNone
refusalstr | NoneNone

One rung of the factor-matching cascade, and what it made of the flow.

FieldTypeDefault
rungstr-
resultstr-
vetostr | NoneNone

A technosphere product or biosphere flow as returned by /flows.

Mirrors the server’s :code:FlowSearchResult. category is the medium alone (“soil”); compartment is the sub-compartment (“agricultural”), which is often all that tells two same-named flows apart. synonyms maps language code → list of synonym strings (empty when the database carries no synonym index).

FieldTypeDefault
idstr-
namestr-
categorystr-
unit_namestr-
compartmentstr | NoneNone
synonymsdict[str, list[str]]dict()

Top contributing elementary flow for an impact category.

Emitted inside LCIAResult.top_contributors.

FieldTypeDefault
flow_namestr-
contributionfloat-
share_pctfloat-
flow_idstr-
categorystr-
cf_valuefloat0.0
compartmentstr | NoneNone
match_kindstr | NoneNone

Detail of one flow, returned by :meth:Client.get_flow.

flow is the raw flow record - a tagged union (technosphere product, biosphere flow, waste flow, or unresolved) whose shape depends on its kind - kept as a dict rather than forced into one dataclass. usage_count is how many exchanges reference it.

FieldTypeDefault
flowdict-
unit_namestr-
usage_countint-

CF-coverage report for one method against the current database.

matched_flows / total_flows is the coverage ratio: how many of the database’s biosphere flows have a CF in this method. Mirrors the engine response of :meth:Client.get_flow_mapping.

FieldTypeDefault
method_namestr-
method_unitstr-
total_flowsint-
matched_flowsint-
flowslist[FlowMappingEntry]list()

Matched fraction expressed as 0..100. Returns 0 when total is 0.

One DB biosphere flow and the CF (if any) assigned to it.

cf_value is None when this DB flow has no characterization factor in the method - that flow contributes 0 to the score for the method. match_strategy records how the mapping was resolved ("uuid", "cas", "name", "synonym", "fuzzy").

FieldTypeDefault
flow_idstr-
flow_namestr-
flow_categorystr-
cf_valuefloat | NoneNone
cf_flow_namestr | NoneNone
match_strategystr | NoneNone

Result of :func:download.

FieldTypeDefault
binaryPath-
data_dirPath-
versionstr-
data_versionstr-

One row of an inventory: a biosphere flow scaled to the functional unit.

is_emission distinguishes outputs (releases) from inputs (resource extraction). flow_id is the database UUID; compartment is the medium label (e.g. "air/urban air") when the source dataset declared one. category is the engine-normalised category used for grouping.

FieldTypeDefault
flow_idstr-
flow_namestr-
quantityfloat-
unit_namestr-
is_emissionbool-
categorystr-
compartmentstr | NoneNone

Life-cycle inventory of an activity: cumulative biosphere flows.

Returned by :meth:Client.get_inventory. The engine does not paginate - flows is the full inventory (filtered by flow= substring when requested). statistics carries the per-direction roll-ups and the most-populated categories.

root is the activity the inventory was computed for. total_flows, emission_flows, resource_flows mirror the engine’s metadata block.

FieldTypeDefault
rootActivity-
total_flowsint-
emission_flowsint-
resource_flowsint-
flowslist[InventoryFlow]-
statisticsInventoryStatistics-

Roll-up totals of an inventory result.

emission_quantity and resource_quantity are sums by direction; total_quantity is the sum of absolute values. top_categories lists (category_name, flow_count) pairs ordered by frequency.

FieldTypeDefault
total_quantityfloat-
emission_quantityfloat-
resource_quantityfloat-
top_categorieslist[tuple[str, int]]list()

Batch LCIA: every impact category in a method collection, for one activity.

Returned by :meth:Client.get_impacts_batch. Carries the per-method impact results plus any formula-based scoring sets configured in the engine TOML (PEF, ECS, or any named set).

scoring_indicators gives the per-variable normalized-weighted breakdown of each scoring set - already multiplied by the set’s displayMultiplier and expressed in its display unit (see :class:ScoringIndicator). Lets callers render per-indicator charts alongside the aggregate scoring_results.

FieldTypeDefault
resultslist[LCIAResult]-
single_scorefloat | NoneNone
single_score_unitstr | NoneNone
norm_weight_set_namestr | NoneNone
available_nw_setslist[str]list()
scoring_resultsdict[str, dict[str, float]]dict()
scoring_unitsdict[str, str]dict()
scoring_indicatorsdict[str, dict[str, ScoringIndicator]]dict()

LCIA score for one impact category on one activity.

Returned directly by :meth:Client.get_impacts, and nested inside :class:LCIABatchResult.results (one entry per impact category).

FieldTypeDefault
method_idstr-
method_namestr-
categorystr-
damage_categorystr-
scorefloat-
unitstr-
mapped_flowsint-
functional_unitstr-
normalized_scorefloat | NoneNone
weighted_scorefloat | NoneNone
top_contributorslist[FlowContribution]list()

How a method’s factors map onto a database’s biosphere flows.

Returned by :meth:Client.get_mapping_status. The mapped_by_* counts break the match cascade down by stage (UUID, then CAS, then name, then synonym); coverage is the matched percentage (0–100), and unmapped_flows lists the factors still without a database flow.

Parsed by hand rather than via the snake-case mixin because the acronym runs (mappedByUUID, mappedByCAS, dbBiosphereCount) do not survive the generic camelCase→snake_case conversion.

FieldTypeDefault
method_idstr-
method_namestr-
total_factorsint-
mapped_by_uuidint-
mapped_by_casint-
mapped_by_nameint-
mapped_by_synonymint-
unmappedint-
coveragefloat-
db_biosphere_countint-
unique_db_flows_matchedint-
unmapped_flowslist[UnmappedFlow]-

One LCIA method, returned by :meth:Client.list_methods.

Pass id to :meth:Client.get_impacts as method_id. collection is the parent method collection (e.g. "ef-31"), forwarded to :meth:Client.get_impacts / :meth:Client.get_impacts_batch as their collection argument.

FieldTypeDefault
idstr-
namestr-
categorystr-
unitstr-
factor_countint-
collectionstr-

Detail of one LCIA method, returned by :meth:Client.get_method.

factor_count is the number of characterization factors; methodology and description are free-text metadata the source may or may not carry.

FieldTypeDefault
idstr-
namestr-
unitstr-
categorystr-
factor_countint-
descriptionstr | NoneNone
methodologystr | NoneNone

One characterization factor of a method (:meth:Client.get_method_factors).

direction is the flow direction the factor applies to; value is the factor in the method’s unit per the flow’s unit. A method routinely holds several factors sharing one flow_name - the same substance emitted to air vs. water, or one regionalized factor per location - so compartment, location and unit are what tell them apart. Each is None when the source method does not carry that axis, or when the engine predates these fields.

FieldTypeDefault
flow_refstr-
flow_namestr-
directionstr-
valuefloat-
unitstr | NoneNone
compartmentstr | NoneNone
locationstr | NoneNone

Shortest upstream path from a root process to a matching activity.

FieldTypeDefault
pathlist[PathStep]-
path_lengthint-
total_ratiofloat-

One step in the supply chain path returned by get_path_to.

Note: the /path endpoint is hand-built (aeson object [...]) but now emits camelCase keys (processId, activityName, cumulativeQuantity, …) like the rest of the API.

FieldTypeDefault
process_idstr-
activity_namestr-
locationstr-
unitstr-
cumulative_quantityfloat-
scaling_factorfloat-
local_step_ratiofloat | NoneNone

One perturbation outcome from :meth:Client.compute_sensitivity.

The engine flattens an Either on the wire: a success carries impact and delta_impact (with error None), a failure carries error (with the other two None). perturbation echoes the request entry - including its label if one was supplied - so results correlate without an out-of-band index.

FieldTypeDefault
perturbationdict-
impactLCIAResult | None-
delta_impactfloat | None-
errorstr | None-

A named classification preset declared in the engine config.

Apply by passing preset=preset.name to filtering endpoints (the engine expands it server-side into the filters triples).

FieldTypeDefault
namestr-
labelstr-
descriptionstr | None-
filterslist[PresetFilter]list()

One filter triple inside a :class:Preset.

FieldTypeDefault
systemstr-
valuestr-
modeMatchMode<MatchMode.CONTAINS: ‘contains’>

One process’s batch impacts inside a :class:BatchScores.

impacts is the same :class:LCIABatchResult that :meth:Client.get_impacts_batch returns for a single process.

FieldTypeDefault
process_idstr-
activity_namestr-
impactsLCIABatchResult-

One per-variable entry inside LCIABatchResult.scoring_indicators.

value is pre-multiplied by the scoring set’s displayMultiplier (configured in the scoring TOML) and expressed in the set’s display unit. category is the indicator’s display name: the scoring set’s labels entry when one is configured (typically for computed variables), otherwise the impact category the variable was resolved from, or as a last resort the raw variable key.

FieldTypeDefault
categorystr-
valuefloat-

Paginated wire envelope, mirrors Haskell SearchResults a.

Carries one page of results plus pagination metadata. Iterating walks every page lazily, fetching subsequent pages on demand via the _fetch callback. len() returns total - the server-reported count across all pages, not just the items currently held.

Wire fields (results, total, offset, limit, has_more, search_time_ms) mirror the server type exactly. Page-style helpers (page_size, page(n)) are client conveniences computed from them.

Pages fetched during iteration are cached on the instance - re-iterating replays the cache without hitting the server. Wrap in list(...) to materialise eagerly if you prefer.

FieldTypeDefault
resultslist[~T]-
totalint-
offsetint-
limitint-
has_morebool-
search_time_msfloat-
_fetchOptional[Callable[[int, int | None], dict]]None
_parseOptional[Callable[[dict], ~T]]None
_fetchedlist[~T]list()
_exhaustedboolFalse

Server-applied limit (page size for further fetches).

Sensitivity analysis: baseline impact plus one entry per perturbation.

Returned by :meth:Client.compute_sensitivity. perturbed preserves the order of the requested perturbations.

FieldTypeDefault
baselineLCIAResult-
perturbedlist[PerturbedResult]-

Server build metadata returned by :meth:Client.get_version.

git_tag is None for untagged dev builds. build_target names the platform triple the binary was compiled for (e.g. "x86_64-linux"). wire_version is the engine’s advertised JSON wire-format revision, or None for engines that predate it (everything up to v0.7.x).

FieldTypeDefault
versionstr-
git_hashstr-
git_tagstr | None-
build_targetstr-
wire_versionint | NoneNone

The lines to restate, and what to restate them to.

FieldTypeDefault
selectExchangeSelector-
amountfloat-

Replace one supplier with another in the upstream supply chain.

All fields are process_ids. consumer identifies which downstream consumer’s input to rewrite, scoping the swap to one edge - the same upstream supplier can be replaced by different alternatives in different parts of the tree. Omit it (leave None) to apply the swap globally, replacing the supplier on every consumer at once.

Frozen so callers can put it in a set / dict key and re-use the same substitution across multiple calls without aliasing risk.

FieldTypeDefault
from_pidstr-
to_pidstr-
consumerstr | NoneNone

Flat supply chain of an activity.

total_activities is the unfiltered upstream count; filtered_activities is what remains after the server applies classification_filters / min_quantity / preset. entries is the slice the server actually returned - it may be shorter than filtered_activities when limit truncates. Use :attr:has_more to detect that case rather than comparing lengths by hand.

FieldTypeDefault
rootActivity-
total_activitiesint-
filtered_activitiesint-
entrieslist[SupplyChainEntry]list()
edgeslist[SupplyChainEdge]list()

True when the server truncated entries below filtered_activities.

Surfacing this lets callers detect silent truncation: if you passed limit=100 and filtered_activities is 500, downstream LCA work would be wrong without flagging the gap.

A consumer→supplier link in the supply chain.

from/to are Python keywords, so the process ids are stored under from_id/to_id. from_db/to_db carry each endpoint’s database name, which is required to route edges across databases (the same process id can exist in more than one loaded DB).

FieldTypeDefault
from_idstr-
from_dbstr-
to_idstr-
to_dbstr-
amountfloat-

One activity in a :class:SupplyChain.entries list.

quantity is the cumulative amount of this activity’s reference product consumed per functional unit of the root activity, in unit. scaling_factor is the multiplier the solver applied to this activity to produce quantity - i.e. quantity = ref_output * scaling_factor. classifications mirrors the producing activity’s classifications (ISIC, CPC, Category, …) so callers can filter by taxonomy without a second :meth:Client.get_activity round trip. depth is the BFS shortest-path distance from the queried root (0 = the root itself), upstream_count the number of direct consumers of this activity inside the chain, and database_name the database the entry lives in (they differ across linked databases).

FieldTypeDefault
process_idstr-
database_namestr-
activity_namestr-
locationstr-
quantityfloat-
unitstr-
scaling_factorfloat-
depthint-
upstream_countint-
classificationsdict[str, str]dict()

One product an activity consumes, named by the process that supplies it.

provider is a process_id (activityUUID_productUUID, or a bare activity UUID when that activity has a single product) - the same address every read endpoint hands out. The flow follows from the supplier, so it is never stated separately. unit defaults to the supplier’s own reference unit; another one is fine as long as it converts.

FieldTypeDefault
providerstr-
amountfloat-
unitstr | NoneNone
commentstr | NoneNone

An exchange with another activity. Carries no compartment - the producing activity’s classifications describe the product taxonomy.

FieldTypeDefault
flow_namestr-
amountfloat-
unitstr-
roleTechRole-
target_activity_namestr | None-
target_locationstr | None-
target_process_idstr | None-
commentstr | NoneNone
is_biosphereboolFalse
is_wasteboolFalse

True for technosphere inputs (role is INPUT or REFERENCE_INPUT).

Lets callers split exchanges into inputs vs. outputs without knowing the four-role taxonomy.

True for reference roles (REFERENCE_PRODUCT / REFERENCE_INPUT).

The reference exchange is the one that defines the activity’s functional unit - the basis the LCA result is normalised to.

A method factor with no matching database flow (in :class:MappingStatus).

FieldTypeDefault
flow_refstr-
flow_namestr-
directionstr-

An exchange of a waste flow with a treatment activity.

Shares the technosphere matrix with product flows but tracked as its own kind so callers can tell a “waste sent to landfill” output apart from a product input. Orphan waste (no linked treatment) contributes zero impact

  • same cut-off semantics as an orphan technosphere input.
FieldTypeDefault
flow_namestr-
amountfloat-
unitstr-
is_inputbool-
target_activity_namestr | None-
target_locationstr | None-
target_process_idstr | None-
commentstr | NoneNone
is_biosphereboolFalse
is_wasteboolTrue

Always False - waste flows never define an activity’s functional unit.

Treatment activities have a ReferenceInput instead, exposed via :class:TechnosphereExchange.

One residue an activity hands to a treatment process.

provider names that treatment process, exactly as a :class:TechInput names its producer.

FieldTypeDefault
providerstr-
amountfloat-
unitstr | NoneNone
commentstr | NoneNone

compare_activities(client: Client, pid_left: str, pid_right: str, *, scope: str = 'direct', group_by: str = 'flow_id', is_input: bool | None = True, **aggregate_kwargs) -> ActivityDiff

Section titled “compare_activities(client: Client, pid_left: str, pid_right: str, *, scope: str = 'direct', group_by: str = 'flow_id', is_input: bool | None = True, **aggregate_kwargs) -> ActivityDiff”

Diff two activities by flow_id (default) at the requested scope.

Returns three lists:

  • matched: flows present in both activities (with left, right, delta).
  • left_only: flows present only in the left activity.
  • right_only: flows present only in the right activity.

Default is_input=True restricts the comparison to inputs, which is the common case for “what does this variant consume differently?”. Pass is_input=None to include outputs as well.

download(version: Optional[str] = None, repo: str = 'ccomb/volca', *, force: bool = False) -> Installed

Section titled “download(version: Optional[str] = None, repo: str = 'ccomb/volca', *, force: bool = False) -> Installed”

Download the volca binary + data bundle for the current platform.

Idempotent: if both artefacts are already extracted under the install root and force=False, returns immediately without network.

Args: version: GH Release tag (v0.7.0); None resolves the latest. repo: GitHub repo slug. Default ccomb/volca. force: Re-download even if the install root looks complete.

Returns: :class:Installed with the resolved paths and versions.

Type alias: Union[TechnosphereExchange, BiosphereExchange, WasteExchange].

Type alias: Literal['flow-synonyms', 'compartment-mappings', 'units'].

Generated from volca._compat - run python scripts/gen_api_md.py to regenerate.

This build of pyvolca 0.9.2 speaks wire formats 2 to 7 and requires a VoLCA engine ≥ v0.9.1; a capability gated on a newer wire than the engine speaks refuses to run with a clear error.