msiemens/tinydb

TinyDB is a lightweight document oriented database optimized for your happiness :)

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 29 minutes ago
Added to GitGenius on September 8th, 2026
Created on July 12th, 2013
Open Issues & Pull Requests: 12 (+0)
GitHub issues: Enabled
Number of forks: 628
Total Stargazers: 7,563 (+0)
Total Subscribers: 102 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 47.3 days
Mean response time: 173.8 days
90th percentile: 411.0 days
Tracked items: 36

How this project is maintained

Around half of the issues opened in the past year never receive a reply. Only 3% of issues opened in the past year have been closed. Three people close 91% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 6
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 463 days
Stale 30+ days: 2
Stale 90+ days: 1

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • contributions-welcome (6)
  • enhancement (1)
  • pinned (1)

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

TinyDB is a lightweight document-oriented database written in pure Python with no external dependencies, designed for small applications that do not require a full SQL database or external server.

TinyDB solves the problem of persisting structured data in small projects by providing a simple, file-based document store. It stores data as JSON documents in a local file and offers a query language that lets developers search and filter records using Python expressions. The tool supports logical operators to combine queries, field transformations, and multiple named tables within a single database file.

TinyDB suits projects that need basic data persistence without the overhead of setting up a database server. It works well for small applications, prototypes, embedded use cases, or scenarios where a SQL database would be unnecessarily complex. The project explicitly targets developers who value simplicity and a clean API over advanced database features. Anyone adopting it should know that the project is in maintenance mode, meaning it has reached a stable state where significant new features or architectural changes are not planned, though community-contributed bugfixes and features will still be released. The tool is extensible through custom storage backends and middleware, allowing developers to modify its behavior when needed.

Development activity shows that the project maintains high code quality standards with complete test coverage. The codebase remains compact and focused, with the core implementation comprising a small number of lines alongside comprehensive tests. The project's maturity is reflected in its stability across multiple Python versions and its established documentation and discussion forum for community engagement.