patx / pickledb

pickleDB is an open source key-value store using Python's json module.
https://patx.github.io/pickledb
BSD 3-Clause "New" or "Revised" License
908 stars 127 forks source link

Feature: Append to db #77

Open tommydb opened 3 years ago

tommydb commented 3 years ago

Being able to append to the pickledb. Everytime i call db.dump() it overwrites existing file.

alexshelto commented 3 years ago

What are you wanting to append to the .db file? an entry or to concatenate files?

tory1103 commented 3 years ago

You can first read the saved database with "load", make modifications, and then save it. This wont overwrite database, it will append data