You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ pip show blitzdb
---
Metadata-Version: 1.0
Name: blitzdb
Version: 0.2.12
Summary: A document-oriented database written purely in Python.
Home-page: https://github.com/adewes/blitzdb
Author: Andreas Dewes - 7scientists
Author-email: andreas@7scientists.com
License: MIT
Location: /usr/lib/python2.6/site-packages
Requires:
$ python -V
Python 2.6.6
$ head -2 test_blitzdb.py
from blitzdb import Document
from blitzdb import FileBackend
$ python test_blitzdb.py
Traceback (most recent call last):
File "test_blitzdb.py", line 2, in <module>
from blitzdb import Document
File "/usr/lib/python2.6/site-packages/blitzdb/__init__.py", line 2, in <module>
from .backends.file import Backend as FileBackend
File "/usr/lib/python2.6/site-packages/blitzdb/backends/file/__init__.py", line 1, in <module>
from blitzdb.backends.file.backend import Backend
File "/usr/lib/python2.6/site-packages/blitzdb/backends/file/backend.py", line 13, in <module>
from blitzdb.backends.file.index import (
File "/usr/lib/python2.6/site-packages/blitzdb/backends/file/index.py", line 105
self._undefined_keys = {key : True for key in undefined_values}
^
SyntaxError: invalid syntax
$
The text was updated successfully, but these errors were encountered:
Is blitzdb compatible with older versions of python? RHEL6 still uses version 2.6.6.
I tried to do the imports shown in https://github.com/adewes/blitzdb#user-content-examples
The text was updated successfully, but these errors were encountered: