I am writing a memgraph transformation in python.
When I import modules such as “requests” or “networkx”, the transformation works as expected.
I have avro data w/ schema registry, so I need to deserialize it. I followed the memgraph example here: Import Avro data | Memgraph Docs
When I save the transformation with those imports, I receive the error:
[Error] Unable to load module "/memgraph/internal_modules/test_try_plz.py";
Traceback (most recent call last): File "/memgraph/internal_modules/test_try_plz.py", line 4,
in <module> from confluent_kafka.schema_registry import SchemaRegistryClient ModuleNotFoundError:
No module named 'confluent_kafka' . For more details, visit https://memgr.ph/modules.
How can I update my transform or memgraph instance to include the confluent_kafka module?
The link provided in the answer did not provide any leads, at least to me.