Lev E. Givon
Lev E. Givon
questions + issues: record_create do not create record, client.command cannot be put in transactions
@gg4u, you can obtain cluster information from the class instance returned by `pyorient.orient.OrientDB.db_open`: ``` import pyorient client = pyorient.OrientDB('localhost', 2424) info = client.db_open('GratefulDeadConcerts', 'username', 'passwd') print info.dataClusters ``` Running a...
questions + issues: record_create do not create record, client.command cannot be put in transactions
You can't use the `command` method in a transaction; you need to use `record_create`, `record_update`, or `record_delete`.
> Dear Miles, > > I have used `gap-stat` on a same dataset. However, the optimal number of clusters that `gap-stat` returns is not always the same. I guess this...
It's a script installed as a shortcut for `python -m oneliner` (although it's actually named `pyl-X.Y`, where X.Y is your Python version).
@rbarlow: FYI, I combined rpdb with ipdb in a single package called [ripdb](https://github.com/lebedov/ripdb). Note that since ipdb is currently licensed under the GPL, the ripdb code is as well and...
@rbarlow: There isn't any issue combining GPL-compatible code with GPL code, but relicensing GPL code under a license such as 2-clause BSD that permits things disallowed by the GPL is...
@rbarlow: correct.
Relatedly, are the ctypes bindings in pyculib maintained by hand? Given the growing number of GPU libraries available, I've toyed with autogeneration of low-level wrappers using cffi combined with a...
FYI, I have some BSD-licensed CUSOLVER bindings in [scikit-cuda](http://github.com/lebedov/scikit-cuda) that could potentially be modified for this purpose.
Sure - collaboration would be great! We can discuss further on some other channel (email, a separate git issue, etc.) - let me know. By "protocol", I assume you are...