Metadata-Version: 2.1
Name: KVDatastore
Version: 1.0.1
Summary: File based key-value datastore
Home-page: UNKNOWN
Author: Jeffry Joseph
Author-email: jeffryjoseph116@gmail.com
License: MIT
Keywords: key-value datastore
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3

=================  File based Key Value Datastore   =======================



This is a simple Key value datastore that supports CRD operations(Create, Read, Delete). 
This datastore creates a datastore in your local machine.
Since it is a package, you can initialize by following steps.

	=> open your terminal, run pip install KVDatastore
	=> now open your python, run following code.

>>> from KVDatastore import *
>>> object=KVDatastore()

	This imports all methods to your code and creates instance of the class

	=> The methods available are,
		--> initdatastore(location)
		--> create(key,value)	
		--> read(key)
		--> delete(key)

