Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 939 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 939 Bytes

Neomodel Tutorial

This tutorial is to test neo4j neomodel.

Neomodel GitHub

Requirements

  • Neo4j
  • Python
  • Neomodel

You can refer to environment.yml or install_packages.sh for the specific libraries.

Installation

# install from environment.yml
conda env create -f environment.yml
conda activate neomodel-tutorial

# create database models and constraints
neomodel_install_labels --db bolt://<neo4j_database_name>:<neo4j_database_password>@localhost:7687 models.py

# execute script
python app.py

Reference