Skip to content

Releases: mogui/pyorient

Upgrade to support for OrientDB v2.2.19

29 Apr 20:36
Compare
Choose a tag to compare

Upgrade to support for OrientDB v2.2.0

06 Jun 03:21
Compare
Choose a tag to compare

First python native binary client implementation

10 Apr 17:27
Compare
Choose a tag to compare

Fixed vulnerability on SQL injection:
(see details )
(see details )

First python native binary client implementation

First python native binary client implementation

10 Oct 14:45
Compare
Choose a tag to compare

Version 1.4.5c

Support for OrientDB 2.1.3

Fixes
#117
5c73bfd
#108
#107

First python native binary client implementation

31 May 22:47
Compare
Choose a tag to compare

Version 1.4.2a

Fixes:
PyOrientCommandException construction #73
Handling ODatabaseException properly #72
Parse the CommandException for the actual exception. #65

First python native binary client implementation

18 May 22:58
Compare
Choose a tag to compare

First python native binary client implementation

22 Mar 00:09
Compare
Choose a tag to compare

Version 1.4

Changed the behaviour of OrientRecord object.

You can access directly the values of the oRecordData by calling them as OrientRecord properties.
You can access the values of the oRecordData by calling tham as dict keys.
OrientRecord now has defined _version, _rid, _class, _in, _out properties.

    def test_new_projection(self):
        rec = {'@Package': {'name': 'foo', 'version': '1.0.0', 'rid': 'this_is_fake'}}
        x = self.client.record_create(9, rec)
        assert x._rid == '#9:0'
        assert x._version == 1
        assert x._class == 'Package'
        assert x.name == 'foo'
        assert x.version == '1.0.0'
        assert x.rid == 'this_is_fake'
        assert x.oRecordData['name'] == 'foo'
        assert x.oRecordData['version'] == '1.0.0'
        assert x.oRecordData['rid'] == 'this_is_fake'

First python native binary client implementation

08 Mar 12:47
Compare
Choose a tag to compare

First python native binary client implementation

09 Feb 02:24
Compare
Choose a tag to compare

Version 1.3.0

Support Token based Authentication
Re-written Orient Data parser