pyorient icon indicating copy to clipboard operation
pyorient copied to clipboard

Orientdb driver for python that uses the binary protocol.

Results 71 pyorient issues
Sort by recently updated
recently updated
newest added

I was wondering if exists some command like delete_edge(), to delete a specific edge row. I don't know how to create a method to delete edges in django rest framework,...

So I've Googled like crazy, and read all the issues here, and all the OrientDB documentation and I cannot for the life of me figure out how to overcome this...

My query is: ```` select expand(outE('isInvited')[reacted=false].inV()[planned_for > sysdate()] ) from #89:0 ```` When I run it in OrientDB Studio, it returns expected results. When I run it with `client.query(my_query_here)` it...

`import pyorient` `client = pyorient.OrientDB('localhost', 2424)` `client.db_exist('test')` returns an utf8 parsing error while db_list() seems to be stuck...

pyorient==1.5.5 ``` import pyorient.ogm from pyorient.ogm import Graph, Config, declarative from pyorient.ogm.property import * # Initialize Registries Node = declarative.declarative_node() Relationship = declarative.declarative_relationship() server = "localhost" db_name = "mygraph" db_admin...

I have a graph as shown in the image above. When I run the query : ``` traverse outE('has_component').inV() from (select expand(rid) from index:part.part_id where key = 'A') maxdepth 2...

Updated supported protocol and version

I'm creating new cluster for vertices and edges every X time. sometimes I get this message: `pyorient.exceptions.PyOrientCommandException: com.orientechnologies.orient.core.exception.OStorageException - File darknet_200.pcl has already been added to the storage` any ideas...

I have a database with a lot of Classes. The classes are created with "weak" schema (objects of classes actually have attributes that are not defined in schema in OrientDB)....

Can I use prepared commands with pyorient? Something like: insert into Person (name, age) values (:name, :age) or insert into Person (name, age) values (?, ?) and then, submit the...

enhancement