-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
64 changed files
with
223 additions
and
327 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,28 @@ | ||
simple key-value storage api | ||
============================ | ||
minimal key-value storage api | ||
============================= | ||
|
||
.. image:: https://travis-ci.org/mbr/simplekv.png?branch=master | ||
:target: https://travis-ci.org/mbr/simplekv | ||
.. image:: https://coveralls.io/repos/github/mbr/simplekv/badge.svg?branch=master | ||
:target: https://coveralls.io/github/mbr/simplekv?branch=master | ||
|
||
*simplekv* is an API for very basic key-value stores used for small, frequently | ||
*minimalkv* is an API for very basic key-value stores used for small, frequently | ||
accessed data or large binary blobs. Its basic interface is easy to implement | ||
and it supports a number of backends, including the filesystem, SQLAlchemy, | ||
MongoDB, Redis and Amazon S3/Google Storage. | ||
|
||
Installation | ||
------------ | ||
simplekv is `available on PyPI <http://pypi.python.org/pypi/simplekv/>`_ and | ||
minimalkv is `available on PyPI <http://pypi.python.org/pypi/minimalkv/>`_ and | ||
can be installed through `pip <http://pypi.python.org/pypi/pip>`_:: | ||
|
||
pip install simplekv | ||
pip install minimalkv | ||
or via ``conda`` on `conda-forge <https://github.com/conda-forge/simplekv-feedstock>`_:: | ||
or via ``conda`` on `conda-forge <https://github.com/conda-forge/minimalkv-feedstock>`_:: | ||
|
||
conda install -c conda-forge simplekv | ||
conda install -c conda-forge minimalkv | ||
|
||
Documentation | ||
------------- | ||
The documentation for simplekv is available at | ||
https://simplekv.readthedocs.io. | ||
The documentation for minimalkv is available at | ||
https://minimalkv.readthedocs.io. | ||
|
||
License | ||
------- | ||
simplekv is `MIT licensed | ||
minimalkv is `MIT licensed | ||
<http://www.opensource.org/licenses/mit-license.php>`_. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Hash and encryption decorators | ||
****************************** | ||
|
||
.. automodule:: simplekv.crypt | ||
.. automodule:: minimalkv.crypt | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Other decorators | ||
**************** | ||
|
||
.. autoclass:: simplekv.decorator.PrefixDecorator | ||
.. autoclass:: simplekv.decorator.URLEncodeKeysDecorator | ||
.. autoclass:: simplekv.decorator.ReadOnlyDecorator | ||
.. autoclass:: minimalkv.decorator.PrefixDecorator | ||
.. autoclass:: minimalkv.decorator.URLEncodeKeysDecorator | ||
.. autoclass:: minimalkv.decorator.ReadOnlyDecorator |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.