Bulk insert in frappe

i want to bulk insert in my custom app, how can i do that without inserting one by one at a time

Frappe doesn’t support bulk insert. Any bulk insert APIs that exists primarily do it in a loop. This is a trade-off resulting from the way doctype controllers allow hooking into events before document is inserted.

If it’s boring CRUD bulk insert then you can try these

1 Like