Metadata-Version: 2.1
Name: gink
Version: 0.20230313
Summary: a system for storing data structures in lmdb
Home-page: https://github.com/x5e/gink
Author: Darin McGill
Author-email: gink@darinmcgill.com
Project-URL: Bug Tracker, https://github.com/x5e/gink/issues
Project-URL: repository, https://github.com/x5e/gink
Keywords: gink lmdb crdt history versioned
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.8, <4
Description-Content-Type: text/markdown
Provides-Extra: test
Provides-Extra: lint
License-File: LICENSE

# Gink in General

Gink aims to be a "protocol first" database system defined by the protocol for syncronizing 
instances, rather than by a specific implementation.  Defining the database in terms of
the interchange format allows for independent implementations to interact seamlessly in 
a well-defined manner.

# This Python Implementation of Gink

I created the python implementation of Gink to be a testbed for new ideas and
to provide the simplest expression of all the concepts in Gink.  Well written python
code can essentially serve as executable psudocode.  Code written for this implementation
has been biased in favor of readability and extensibility, rather than raw performance.
For example, (most of) the code doesn't use async functions or multi-threading. 
