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
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
.idea
ENV
ExampleNotebooks/.ipynb_checkpoints
ExampleNotebooks/.ipynb_checkpoints
*.pyc
__pycache__
*.egg-info
.log
.vscode
2 changes: 1 addition & 1 deletion ExampleNotebooks/Example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"metadata": {},
"outputs": [],
"source": [
"%export_states createArchive=True, uploadServer=http://host.docker.internal:8080, archiveName=Your Archive Name "
"%export_states createArchive=True, uploadServer=http://host.docker.internal:8888, archiveName=Your Archive Name "
]
}
],
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
1. `pip install wheel`
2. `pip install ipykernel/`
3. `pip install tools/state_capture_magic`
4. `jupyter kernelspec install --user /home/dimuthu/code/iPython-Kerner-Changes/ipykernel/`
4. `jupyter kernelspec install --user ./ipykernel/`
5. `pip install notebook`
6. `jupyter notebook --ip 0.0.0.0 `

Expand Down
6 changes: 5 additions & 1 deletion tools/state_capture_magic/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,8 @@
author='Dimuthu Wannpurage',
author_email='dwannipu@iu.edu',
description='IPython Extension for Cassandra integration',
)
install_requires=[
'dill',
'requests',
],
)