cclgroupltd / ccl_chromium_reader

(Sometimes partial) Python re-implementations of the technologies involved in reading various data sources in Chrome-esque applications.
MIT License
141 stars 33 forks source link

Can you write to indexeddb? #17

Closed jose-sampedro closed 1 year ago

jose-sampedro commented 1 year ago

I have been able to read the indexeddb file, but I don't know how I can write to it. Any suggestions?

Thank you.

cclgroupltd commented 1 year ago

This library is only for reading (and there is no intention to implement writing, sorry).

The easiest way to write to IndexedDB is in the browser via the JavaScript API (https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API) unless you're specifically trying to do it outside of the browser for research purposes?