mbr / simplekv

A simple key-value store for binary data.
http://simplekv.readthedocs.io
MIT License
152 stars 50 forks source link

Problem using google.cloud.storage backend. (Sync problem between github and pypi?) #116

Open crkrenn opened 1 year ago

crkrenn commented 1 year ago

Hi,

I need help using the google cloud storage backend after installing simplekv from pypi. I've documented my version and the available methods below.

The problem seems to be that the version of simplekv hosted on pypi.org is 0.14.1 and was uploaded on Apr. 9, 2020. The version of simplekv hosted here is also 0.14.1, but the last commit was Feb 23, 2021.

A solution, I think, would be for someone with write access to pypi to push a new version.

Is this possible?

Vielen Dank! (Thanks very much!)

-Chris Krenn

pypi version:

python_backend % pip show simplekv
Name: simplekv
Version: 0.14.1
Summary: A key-value storage for binary data, support many backends.
Home-page: http://github.com/mbr/simplekv
Author: Marc Brinkmann
Author-email: git@marcbrinkmann.de
License: MIT
Location: /Users/crkrenn/venv/venv-dgps-polis/lib/python3.8/site-packages

simplekv.net methods:

>>> import pkgutil
>>> 
>>> package_name = 'simplekv.net'
>>> package = __import__(package_name, fromlist=[''])
>>> 
>>> for importer, modname, ispkg in pkgutil.iter_modules(package.__path__):
...     print(modname)
... 
_azurestore_common
_azurestore_new
_azurestore_old
azurestore
botostore
>>>