Tag Archives: Python

Cypher Support in Py2neo 1.2

Cypher has evolved considerably over the past few months. With the introduction of mutating statements and the recent foray into streaming results, it’s an interesting time for Neo4j‘s query language. When I first built py2neo, Cypher support was almost an [...]

Cypher & GEOFF

I dislike the term “NOSQL”. Not only does it inappropriately attempt to group together a set of quite disparate technologies under one banner but it’s entire purpose is to describe what these technologies don’t do, instead of what they actually [...]

Pagination with Neo4j

Following a request on Twitter, I have spent a few hours putting together a quick article on pagination using Neo4j and more specifically the Cypher query language. Predictably, this is written from a Python standpoint and uses py2neo, but the [...]

Py2neo and Me

It’s been about two months since I began the py2neo project so I thought it was about time I wrote an article on what I’ve been up to. For those who aren’t aware of the purpose of py2neo, it’s a [...]

A Python equivalent to PHP’s openssl_open() function

For the project I am currently working on, we had a need to decode data in Python that had been encoded using PHP’s openssl_seal() function. Python does not appear to have a direct equivalent function.  The M2Crypto package can decode [...]