Although changed bolt port using:
authenticate(bolt_url_strippted + ":24786", username, password)
g = Graph(
host=bolt_url_strippted,
bolt=True,
bolt_port=24786,
user=username,
password=password)
g.begin()
I get the following error:
py2neo.packages.neo4j.v1.exceptions.ProtocolError: Unable to connect to <server>.dbs.graphenedb.com on port 7687 - is the server running?
I have successful connected to the server using a different python driver with the custom port. I am using py2neo ver 3.1.2, Neo4j version 3.0.8 via GrapheneDB
edit - the official python-neo4j driver worked for me and the url is of the form: 'bolt://hobby-XXX.dbs.graphenedb.com:24786'
Thanks,
SK