Skip to content

Commit e539abf

Browse files
authored
Merge pull request #3 from gjbex/development
Development
2 parents c6d890a + 26de7c7 commit e539abf

7 files changed

+104
-454
lines changed

hands-on/compressed_files.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@
312312
"name": "python",
313313
"nbconvert_exporter": "python",
314314
"pygments_lexer": "ipython3",
315-
"version": "3.7.0"
315+
"version": "3.7.5"
316316
}
317317
},
318318
"nbformat": 4,

hands-on/filesystem_interaction.ipynb

+17-5
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
},
1010
{
1111
"cell_type": "code",
12-
"execution_count": null,
12+
"execution_count": 1,
1313
"metadata": {
1414
"ExecuteTime": {
1515
"end_time": "2018-11-14T08:44:12.881704Z",
@@ -49,18 +49,30 @@
4949
},
5050
{
5151
"cell_type": "code",
52-
"execution_count": null,
52+
"execution_count": 3,
5353
"metadata": {
5454
"ExecuteTime": {
5555
"end_time": "2018-11-13T12:13:11.498841Z",
5656
"start_time": "2018-11-13T12:13:11.483568Z"
5757
},
5858
"hidden": true
5959
},
60-
"outputs": [],
60+
"outputs": [
61+
{
62+
"name": "stdout",
63+
"output_type": "stream",
64+
"text": [
65+
"shell_interaction.ipynb: 13615 bytes, last accessed: 2019-12-03 07:18:08\n",
66+
"system_information.ipynb: 8870 bytes, last accessed: 2019-12-03 06:59:53\n",
67+
"compressed_files.ipynb: 7857 bytes, last accessed: 2019-11-22 06:48:58\n",
68+
"julia.ipynb: 5311 bytes, last accessed: 2019-12-03 07:54:28\n",
69+
"filesystem_interaction.ipynb: 18180 bytes, last accessed: 2019-12-03 07:57:53\n"
70+
]
71+
}
72+
],
6173
"source": [
6274
"for item in Path.cwd().iterdir():\n",
63-
" if item.is_file() and item.name.endswith('.py'):\n",
75+
" if item.is_file() and item.name.endswith('.ipynb'):\n",
6476
" lstat = item.lstat()\n",
6577
" access_time = datetime.strftime(datetime.fromtimestamp(lstat.st_atime),\n",
6678
" '%Y-%m-%d %H:%M:%S')\n",
@@ -794,7 +806,7 @@
794806
"name": "python",
795807
"nbconvert_exporter": "python",
796808
"pygments_lexer": "ipython3",
797-
"version": "3.7.0"
809+
"version": "3.7.5"
798810
}
799811
},
800812
"nbformat": 4,

hands-on/julia.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@
243243
"name": "python",
244244
"nbconvert_exporter": "python",
245245
"pygments_lexer": "ipython3",
246-
"version": "3.7.0"
246+
"version": "3.7.5"
247247
}
248248
},
249249
"nbformat": 4,

0 commit comments

Comments
 (0)