Skip to content

Commit ef515c9

Browse files
committed
Quick update for cript 0.0.2
1 parent d490b24 commit ef515c9

13 files changed

+234
-1162
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ This repository holds a lot of helpful information for those learning CRIPT API.
3939
* [Conditions Keys](http://htmlpreview.github.io/?https://github.com/C-Accel-CRIPT/cript_tutorials/blob/master/key_tables/condition_keys.html)
4040
* Property Keys
4141
* [Reaction](http://htmlpreview.github.io/?https://github.com/C-Accel-CRIPT/cript_tutorials/blob/master/key_tables/property_keys_reaction.html)
42-
* [Polymers](http://htmlpreview.github.io/?https://github.com/C-Accel-CRIPT/cript_tutorials/blob/master/key_tables/property_keys_polymers.html)
4342
* [Materials](http://htmlpreview.github.io/?https://github.com/C-Accel-CRIPT/cript_tutorials/blob/master/key_tables/property_keys_materials.html)
4443
* [Analytical Methods](http://htmlpreview.github.io/?https://github.com/C-Accel-CRIPT/cript_tutorials/blob/master/key_tables/method_keys.html)
4544
* [Data Types](http://htmlpreview.github.io/?https://github.com/C-Accel-CRIPT/cript_tutorials/blob/master/key_tables/data_keys.html)

jupyterlab_tutorials/Advanced_searching.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@
6161
"source": [
6262
"from cript import *\n",
6363
"\n",
64-
"db_username = \"Olsen_lab\"\n",
65-
"db_password = \"Brad_Olsen\"\n",
66-
"db_project = \"cript_testing\"\n",
67-
"db_database = \"test\"\n",
68-
"user = \"johndoe@cript.edu\"\n",
64+
"db_username = \"#######\"\n",
65+
"db_password = \"#######\"\n",
66+
"db_project = \"#######\"\n",
67+
"db_database = \"#######\"\n",
68+
"user = \"#######\" # Put your email or uid here\n",
6969
"db = CriptDB(db_username, db_password, db_project, db_database, user)"
7070
]
7171
},

jupyterlab_tutorials/Exporting.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@
4646
"source": [
4747
"from cript import *\n",
4848
"\n",
49-
"db_username = \"Olsen_lab\"\n",
50-
"db_password = \"Brad_Olsen\"\n",
51-
"db_project = \"cript_testing\"\n",
52-
"db_database = \"test\"\n",
53-
"user = \"johndoe@cript.edu\"\n",
49+
"db_username = \"#######\"\n",
50+
"db_password = \"#######\"\n",
51+
"db_project = \"#######\"\n",
52+
"db_database = \"#######\"\n",
53+
"user = \"#######\" # Put your email or uid here\n",
5454
"db = CriptDB(db_username, db_password, db_project, db_database, user)\n",
5555
"\n",
5656
"expt_doc = db.view(Experiment)"

jupyterlab_tutorials/Part_1_CRIPT_tutorial.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
"\n",
116116
"# Important: Change the file location to match where you are storing the \".tar.gz\" file on your computer\n",
117117
"import sys\n",
118-
"!{sys.executable} -m pip install --user C:/Users/nicep/Desktop/Reseach_Post/Case_studies/cript/dist/cript-0.0.1.tar.gz"
118+
"!{sys.executable} -m pip install --user C:/#############/cript-0.0.1.tar.gz"
119119
]
120120
},
121121
{
@@ -196,10 +196,10 @@
196196
"outputs": [],
197197
"source": [
198198
"# Connect to database\n",
199-
"db_username = \"Olsen_lab\"\n",
200-
"db_password = \"Brad_Olsen\"\n",
201-
"db_project = \"cript_testing\"\n",
202-
"db_database = \"test\"\n",
199+
"db_username = \"#######\"\n",
200+
"db_password = \"#######\"\n",
201+
"db_project = \"#######\"\n",
202+
"db_database = \"#######\"\n",
203203
"db = C.CriptDB(db_username, db_password, db_project, db_database)"
204204
]
205205
},

jupyterlab_tutorials/Part_2_CRIPT_tutorial.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@
6464
"print(\"Import successful!\")\n",
6565
"\n",
6666
"# Connect to database\n",
67-
"db_username = \"Olsen_lab\"\n",
68-
"db_password = \"Brad_Olsen\"\n",
69-
"db_project = \"cript_testing\"\n",
70-
"db_database = \"test\"\n",
67+
"db_username = \"########\"\n",
68+
"db_password = \"########\"\n",
69+
"db_project = \"########\"\n",
70+
"db_database = \"########\"\n",
7171
"user = \"johndoe@cript.edu\" # Put your email or uid here\n",
7272
"db = CriptDB(db_username, db_password, db_project, db_database, user)"
7373
]

jupyterlab_tutorials/completed/Part_1_CRIPT_tutorial.ipynb

Lines changed: 86 additions & 206 deletions
Large diffs are not rendered by default.

jupyterlab_tutorials/completed/Part_2_CRIPT_tutorial.ipynb

Lines changed: 125 additions & 210 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)