Metadata-Version: 2.1
Name: plyvel-win32
Version: 1.2.1
Summary: Plyvel, a fast and feature-rich Python interface to LevelDB
Home-page: https://github.com/AustEcon/plyvel-win32
Author: AustEcon
Author-email: austecon0922@gmail.com
License: BSD License
Download-URL: https://github.com/AustEcon/plyvel-win32/archive/1.2.1.tar.gz
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX
Classifier: Programming Language :: C++
Classifier: Programming Language :: Cython
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Database
Classifier: Topic :: Database :: Database Engines/Servers
Classifier: Topic :: Software Development :: Libraries :: Python Modules

============
Plyvel-win32
============

.. image:: https://travis-ci.org/wbolster/plyvel.svg?branch=master
    :target: https://travis-ci.org/wbolster/plyvel

Why does this fork exist?
--------------------------

The sole reason for this fork existing is to provide win32 python wheels for
ease of installation.

In other words, I am compiling the C++ leveldb -> x86 and x86-64 binaries + doing
the cython build and wheel creation so that you don't have to. I have no intention
whatsoever of doing any development work on plyvel beyond this - please continue to use
the main repository for all other purposes.

To install:

.. code-block:: python

    > py -3.7-32 -m pip install plyvel-win32
    > py -3.7 -m pip install plyvel-win32
    > py -3.8-32 -m pip install plyvel-win32
    > py -3.8 -m pip install plyvel-win32

Then use like you normally use plyvel:

.. code-block:: python

    import plyvel
    db = plyvel.DB('/tmp/testdb/', create_if_missing=True)


Plyvel
------
**Plyvel** is a fast and feature-rich Python interface to LevelDB_.

Plyvel has a rich feature set, high performance, and a friendly Pythonic API.
See the documentation and project page for more information:

* Documentation_
* `Project page`_
* `PyPI page`_

.. _Project page: https://github.com/wbolster/plyvel
.. _Documentation: https://plyvel.readthedocs.io/
.. _PyPI page: http://pypi.python.org/pypi/plyvel/
.. _LevelDB: http://code.google.com/p/leveldb/

Note that using a released version is recommended over a checkout from version
control. See the installation docs for more information.


