Skip to content

Commit 1e7e792

Browse files
committed
Start of neo4j notebook.
1 parent 6470d06 commit 1e7e792

File tree

6 files changed

+843
-6
lines changed

6 files changed

+843
-6
lines changed

hbase/sesion5.ipynb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
2-
"cells": [
2+
"cells":
3+
[
34
{
45
"cell_type": "markdown",
56
"metadata": {

hbase/sesion6.ipynb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
2-
"cells": [
2+
"cells":
3+
[
34
{
45
"cell_type": "markdown",
56
"metadata": {

neo4j/docker-compose.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
services:
2+
3+
notebook:
4+
image: "quay.io/jupyter/scipy-notebook"
5+
ports:
6+
- "8888:8888"
7+
volumes:
8+
- ..:/home/jovyan/work/bdge
9+
user: root
10+
environment:
11+
- GRANT_SUDO=yes
12+
depends_on:
13+
- neo4j
14+
15+
neo4j:
16+
image: neo4j
17+
environment:
18+
- NEO4J_AUTH=none
19+
- NEO4J_server_memory_heap_maxSize=8G
20+
- NEO4J_db_import_csv_legacy__quote__escaping=false
21+
ports:
22+
- "7474:7474"
23+
- "7687:7687"

neo4j/sesion7.ipynb

Lines changed: 812 additions & 0 deletions
Large diffs are not rendered by default.

sql/sesion1.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"id": "yULxkMKuIWqZ"
1616
},
1717
"source": [
18-
"# Toma de contacto con Jupyter/Colab y SQL"
18+
"# Toma de contacto con Jupyter/Colab y SQL (sesión 1)"
1919
]
2020
},
2121
{
@@ -56,7 +56,7 @@
5656
},
5757
"outputs": [],
5858
"source": [
59-
"!sudo apt-get install -y apt-utils dialog mysql-client libmysqlclient-dev p7zip pkg-config"
59+
"!sudo apt-get install -y -q apt-utils dialog mysql-client libmysqlclient-dev p7zip pkg-config"
6060
]
6161
},
6262
{
@@ -81,7 +81,7 @@
8181
"if RunningInCOLAB:\n",
8282
" !sudo apt-get install -y -qq mysql-server\n",
8383
" !sudo service mysql start\n",
84-
" !sudo mysql -e \"ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'root'\"\n"
84+
" !sudo mysql -e \"ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'root'\""
8585
]
8686
},
8787
{

sql/sesion2.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
},
6767
"outputs": [],
6868
"source": [
69-
"!sudo apt-get install -y apt-utils dialog libmysqlclient-dev mysql-client p7zip pkg-config"
69+
"!sudo apt-get install -y -q apt-utils dialog libmysqlclient-dev mysql-client p7zip pkg-config"
7070
]
7171
},
7272
{

0 commit comments

Comments
 (0)