2-9 of 1,410,000 results
Open links in new tab
  1. I made DictDataBase, it‘s like SQLite but for JSON!

    ACID compliant. Unlike TinyDB, it is suited for concurrent environments. No database server required. Simply import DictDataBase in your project and use it. Compression. Configure if the files should be …

  2. [PYTHON] Sorting entries in a TinyDB DB? : r/learnprogramming

    I read through the TinyDB documentation, as well as searched the web, and I can't find an answer to the following question: How do I return a list of entries in the DB sorted by a field of my choosing? It …

  3. Alternatives to SQLite 3 : r/flask - Reddit

    Feb 18, 2022 · Flask is a Python micro-framework for web development. Flask is easy to get started with and a great way to build websites and web applications.

  4. TinyDB - A small-footprint, in-memory database. : r/rust - Reddit

    Jun 11, 2020 · I recently rewrote my TinyDB library, a simple and fast in-memory database that can be stored as a file. It isn't relational but allows super simple serialisation most rust data structures!

  5. TinyDB : r/computerforensics - Reddit

    Nov 7, 2023 · TinyDB Hello all. During some research, I came across an app with a TinyDB as a database with user data. I would like to examine the DB but I cannot find a viewer to examine the …

  6. TinyDB Reading entries by order : r/learnpython - Reddit

    Apr 8, 2017 · I love TinyDB, but it doesn't remember order out of the box. In fact, since the default storage implementation uses standard dictionaries, it should be treated as randomly ordered.

  7. Anyone use tinydb with multiprocessing concurrency?

    Jul 19, 2018 · Exploring the use of TinyDB with multiprocessing concurrency and understanding the role of 'dummy' in Python's ThreadPool.

  8. What's the best way to persistently store this data? : r ...

    If you're planning to load the whole thing into memory, then JSON seems like a good way to go. Some people mentioned pickle (probably the easiest way to go), but with a JSON you can even edit/view …