On November 2025 DataCrunch company changed its name to Verda. Starting with version 1.17.0, verda is the new name for the Python package.
Original datacrunch package is deprecated, but we will continue maintaining it, publishing new datacrunch releases together with the new verda releases using the same version numbers.
While we plan to continue maintaining datacrunch package, we recommend migrating to verda. Except for import changes, API is the same.
Follow these steps to migrate:
-
Replace
datacrunchdependency with latestverda# if your project uses uv uv remove datacrunch uv add verda # if your project uses pip pip uninstall datacrunch pip install verda -
Replace
datacrunchmodule withverdaandDataCrunchClientclass withVerdaClient# Before from datacrunch import DataCrunchClient from datacrunch.exceptions import APIException try: datacrunch = DataCrunchClient(...) datacrunch.instances.create(...) except APIException as exception: print('error', exception) # After from verda import VerdaClient from verda.exceptions import APIException try: verda = VerdaClient(...) verda.instances.create(...) except APIException as e: print('error', e)
-
Change deep imports from
datacrunch.*.*toverda.*# Before from datacrunch.InferenceClient.inference_client import AsyncStatus from datacrunch.instances.instances import Instance # After from verda.inference_client import AsyncStatus from verda.instances import Instance