-
Notifications
You must be signed in to change notification settings - Fork 1
Python bindings
Datagram DB Admin edited this page Sep 16, 2024
·
2 revisions
As the main project requires to have a C++ compiler supporting C++23, the user should consider havng g++13 installed. To run the C++ pipeline from python3, you can run the following command after cloning the full repository:
python3.10 -m pip install DatagramDB/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.