gdbm

GNU database manager for fast key-value data storage

brewmacoslinux
Try with needOr install directly
Source

About

GNU database manager

Commands

gdbm_dumpgdbm_load

Examples

Export a GDBM database to a text file$ gdbm_dump mydata.db > mydata.txt
Import data from a text file into a GDBM database$ gdbm_load -r newdata.db < mydata.txt
Create and interact with GDBM database via programming libraries$ python3 -c "import gdbm; db = gdbm.open('test.db', 'c'); db[b'key'] = b'value'; print(db[b'key'])"