- install requirements
pip install -r requirements.txt
- start neo4j docker Ensure you have Docker installed.
python neo4j_docker_start.py
- Create user in database http://localhost:7474 user: neo4j pass: neo4j
You will be prompted to create a new password.
- 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"
- 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
- Run the app
python app.py