A pure Python-implemented database that looks and works like MongoDB. Supports in-memory, flat file, SQLite, and lmdb storage. Seems very flexible.
Zinc is a search engine that does full text indexing. It is a lightweight alternative to Elasticsearch and runs using a fraction of the resources. It uses bluge as the underlying indexing library.
It is very simple and easy to operate as opposed to Elasticsearch which requires a couple dozen knobs to understand and tune which you can get up and running in 2 minutes
It is a drop-in replacement for Elasticsearch if you are just ingesting data using APIs and searching using kibana (Kibana is not supported with zinc. Zinc provides its own UI).
While Elasticsearch is a very good product, it is complex and requires lots of resources and is more than a decade old. I built Zinc so it becomes easier for folks to use full text search indexing without doing a lot of work.
Elara DB is an easy to use, lightweight NoSQL database written for python that can also be used as a fast in-memory cache for JSON-serializable data. Includes various methods and features to manipulate data structures in-memory, protect database files and export data. Can serialize and dump to disk for storage and restoration. Integrity checking built in.
Not a server, it's an embedded database.
Redis is another key-value datastore (a distributed hash table, if you like) that can be used for either caching of often used objects or a database to build applications on top of. Can handle just about any serializable data structure, from strings to sets. Clusterable - uses master/slave replication. Written in C but has bindings for any programming language you're likely to know.
Cayley is an open source graph database application, suitable for network mapping or storing graph-like data. Sits on top of NoSQL database servers. Written in Go. Has its own REST API server, query editor, and query visualizer. Supports multiple query languages. Can use multiple back-end databases to actually store the data.
A NoSQL database written entirely in and for Python as a module. Zero external dependencies, no server. Document oriented database, full test coverage, less than 1.5kloc. Anything that can be represented as a document can be accessed as a dict. Written in pure Python.