Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.DS_Store
venv
246 changes: 246 additions & 0 deletions beginner/.ipynb_checkpoints/jupyter_psql_test-checkpoint.ipynb

Large diffs are not rendered by default.

246 changes: 246 additions & 0 deletions beginner/jupyter_psql_test.ipynb

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions beginner/kernel.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
inside init
starting connection
failed to connect to
starting connection
fetching all from:
SELECT * from customers
11 changes: 11 additions & 0 deletions installation_and_setup/jupyter_setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
cd ..;
pip3 install virtualenv;
virtualenv -p python3 venv;
source venv/bin/activate;
git clone https://github.com/bgschiller/postgres_kernel;
cd postgres_kernel;
python setup.py build;
python setup.py install;
cd ..;
rm -rf postgres_kernel;
pip install -r requirements.txt;
45 changes: 45 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
appnope==0.1.0
backcall==0.1.0
bleach==2.1.3
decorator==4.3.0
entrypoints==0.2.3
html5lib==1.0.1
ipykernel==4.8.2
ipython==6.3.1
ipython-genutils==0.2.0
ipywidgets==7.2.1
jedi==0.12.0
Jinja2==2.10
jsonschema==2.6.0
jupyter==1.0.0
jupyter-client==5.2.3
jupyter-console==5.2.0
jupyter-core==4.4.0
MarkupSafe==1.0
mistune==0.8.3
nbconvert==5.3.1
nbformat==4.4.0
notebook==5.4.1
pandocfilters==1.4.2
parso==0.2.0
pexpect==4.5.0
pickleshare==0.7.4
postgres-kernel==0.1
prompt-toolkit==1.0.15
psycopg2==2.7.4
ptyprocess==0.5.2
Pygments==2.2.0
python-dateutil==2.7.2
pyzmq==17.0.0
qtconsole==4.3.1
Send2Trash==1.5.0
simplegeneric==0.8.1
six==1.11.0
tabulate==0.8.2
terminado==0.8.1
testpath==0.3.1
tornado==5.0.2
traitlets==4.3.2
wcwidth==0.1.7
webencodings==0.5.1
widgetsnbextension==3.2.1