Skip to content

Python bindings

Datagram DB Admin edited this page Sep 16, 2024 · 2 revisions

Minimal Working Example (MWE)

After doing this, you can run the C++ server from Python3 as follows:

from PyDatagramDB import DatagramDB
d = DatagramDB("data_file.txt", "query_file.txt", "materialisation_folder", isSerializationFull=True)
d.run()

The computation results will be stored in a folder named materialisation_folder.

Clone this wiki locally