I am working by using rdflib python library for .ttl file processing. I have some triples in the .ttl file but I want to append (update) the file by adding new triples to the existing .ttl file using python rdflib library. For example: file1.ttl has 10 triples (subject->predicate->object) and I want to add 5 new triples to the same file by appending the .ttl file in python rdflib.
Thanks!