Giter Club home page Giter Club logo

neo4j's Introduction

neo4j

This works with https://github.com/shermanelee92/hadoop-spark-hive with jupyter notebook

Getting Started

First build the image

docker build -t neo4j-img .

Then run ./setup.sh

Go to http://localhost:7474/browser/ you should see the neo4j browser

If your container stopped running, run ./startup.sh

Incorporating with Jupyter notebook

In order to connect to neo4j you need the below code (it contains a code sample also) Basically you need the driver's session to run a query

from neo4j import GraphDatabase

uri = "bolt://neo4j:7687"
driver = GraphDatabase.driver(uri, auth=("neo4j", "test"))

cqlNodeQuery = "MATCH (x:university) RETURN x"
nodes = driver.session().run(cqlNodeQuery)

for node in nodes:
    print(node)

neo4j's People

Contributors

shermanelee92 avatar

Stargazers

Alex Ng avatar

Watchers

James Cloos avatar  avatar

Forkers

woonpeng

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.