Dgraph live loader using python

How can we call dgraph live loader from Python API for Dgraph self-hosted?

Hi @aditya_shelar,

Welcome to the community.

I guess you could call the command line options via subprocess.run('dgraph live...', shell=True). But that’s probably not what you want. AFAIK there is no integration from the official dgraph python client (pydgraph) to the live loader.

You could fork our python client and add it, but that would not be trivial.