ejdb-python icon indicating copy to clipboard operation
ejdb-python copied to clipboard

Project archived in favor of ejdb2. EJDB Python binding

Results 7 ejdb-python issues
Sort by recently updated
recently updated
newest added

Changed setup.py to ensure it does a tuple check and not an integer or string check, as that would fail in case of minor version releases of dot notation.

Well, the problem is in the file setup.py, the version check is comparing strings: if py_ver < min_py_vers[int(py_ver[0])]: raise SystemExit("Aborted: EJDB requires Python >= {0}".format(min_py_vers[int(py_ver[0])])) In my case, "2.7.10" <...

The lexicographic comparison python does on strings doesn't achieve the purpose of version comparison here when it comes to version 2.7.10 as (i think) it will be compared as `ord(2),...

``` Python 3.5.0 (default, Sep 20 2015, 11:28:25) [GCC 5.2.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import pyejdb >>> from datetime import datetime >>>...

python version checking when installing use to use string comparison which found 2.7.11 < 2.7.2 and would fail to install after 2.7.9. This fix splits the strings on the ....

The ejdb states that it's possible to use regexp for string matching, using the syntax described in http://ejdb.org/doc/ql/ql.html#simple-matching I'm trying to achieve this using the python bindings, expecting to match...

Hi, It seems that there is no EJDB_update in python binding, are u planning to implement this? cheers,