How to use Live Loader using Python API

We have already created input files in rdf format on a server. We want to automate the graph ingestion process using Live Loader. The entire project ecosystem is based on python environment.
Can you help us out with necessary pre-requisites steps to run live loader module via python scripts using API calls or whatever seems appropriate.

You can call Liveloader with subprocess. Just keep in mind that opening multiple Liveloader instances will not guarantee uniqueness. There is an option in the LL that it can infer the RDF and create an upsert (the LL that creates automatically based on the XID of the RDF). It’s something more complex and I don’t know if it’s for your case.

However, you can run LL with subprocess.

Thanks Michel, this was super helpful