Skip to content

TuckerTucker/tkr_erm

Repository files navigation

  1. install requirements
pip install -r requirements.txt
  1. start neo4j docker Ensure you have Docker installed.
python neo4j_docker_start.py
  1. Create user in database http://localhost:7474 user: neo4j pass: neo4j

You will be prompted to create a new password.

  1. Add new password to app.py
def main():
    uri = "bolt://localhost:7687"
    user = "neo4j" 
    password = "the_new_password" # <--add password here

    url="http://page-to-graph.com" 
  1. Add the page you'd like to graph
def main():
    uri = "bolt://localhost:7687"
    user = "neo4j" 
    password = "the_new_password" 

    url="http://page-to-graph.com" # <-- add url here
  1. Run the app
python app.py

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages