Skip to content

Commit 179f2d7

Browse files
authored
Merge pull request #11 from gjbex/development
Development
2 parents ede57d6 + 6817dbd commit 179f2d7

File tree

6 files changed

+102
-65
lines changed

6 files changed

+102
-65
lines changed

hands-on/shell_interaction.ipynb

+69-16
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"# Intereacting with the shell"
7+
"# Interacting with the shell"
88
]
99
},
1010
{
@@ -18,7 +18,7 @@
1818
"cell_type": "markdown",
1919
"metadata": {},
2020
"source": [
21-
"The [`sh` module](https://amoffat.github.io/sh/) is very convenient to interact with the shell. Note that `sh` is not part of Python's standard library, if you prefer not to use extra modules, use the `subprocess` module in the standard library."
21+
"The [`sh` module](https://amoffat.github.io/sh/) is very convenient to interact with the shell. Note that `sh` is not part of Python's standard library, if you prefer not to use extra modules, use the `subprocess` module in the standard library. The statements below will install `sh` using `pip` is it isn't already installed."
2222
]
2323
},
2424
{
@@ -27,16 +27,12 @@
2727
"metadata": {},
2828
"outputs": [],
2929
"source": [
30-
"!pip install sh"
31-
]
32-
},
33-
{
34-
"cell_type": "code",
35-
"execution_count": null,
36-
"metadata": {},
37-
"outputs": [],
38-
"source": [
39-
"import sh"
30+
"try:\n",
31+
" import sh\n",
32+
"except ModuleNotFoundError:\n",
33+
" print('installing sh using pip')\n",
34+
" !pip install sh\n",
35+
" import sh"
4036
]
4137
},
4238
{
@@ -314,7 +310,9 @@
314310
{
315311
"cell_type": "code",
316312
"execution_count": null,
317-
"metadata": {},
313+
"metadata": {
314+
"tags": []
315+
},
318316
"outputs": [],
319317
"source": [
320318
"try:\n",
@@ -323,6 +321,29 @@
323321
" print(error)"
324322
]
325323
},
324+
{
325+
"cell_type": "markdown",
326+
"metadata": {},
327+
"source": [
328+
"### Clean up"
329+
]
330+
},
331+
{
332+
"cell_type": "markdown",
333+
"metadata": {},
334+
"source": [
335+
"Remove the `tmp` directory."
336+
]
337+
},
338+
{
339+
"cell_type": "code",
340+
"execution_count": null,
341+
"metadata": {},
342+
"outputs": [],
343+
"source": [
344+
"sh.rm('-rf', 'tmp')"
345+
]
346+
},
326347
{
327348
"cell_type": "markdown",
328349
"metadata": {},
@@ -605,11 +626,43 @@
605626
" env=environ, shell=True)\n",
606627
"print(process.stdout.rstrip())"
607628
]
629+
},
630+
{
631+
"cell_type": "markdown",
632+
"metadata": {},
633+
"source": [
634+
"### Clean up"
635+
]
636+
},
637+
{
638+
"cell_type": "markdown",
639+
"metadata": {},
640+
"source": [
641+
"Remove the `tmp` directory."
642+
]
643+
},
644+
{
645+
"cell_type": "code",
646+
"execution_count": null,
647+
"metadata": {},
648+
"outputs": [],
649+
"source": [
650+
"process = subprocess.run(['rm', '-rf', 'tmp'])"
651+
]
652+
},
653+
{
654+
"cell_type": "code",
655+
"execution_count": null,
656+
"metadata": {},
657+
"outputs": [],
658+
"source": [
659+
"process.returncode"
660+
]
608661
}
609662
],
610663
"metadata": {
611664
"kernelspec": {
612-
"display_name": "Python 3",
665+
"display_name": "Python 3 (ipykernel)",
613666
"language": "python",
614667
"name": "python3"
615668
},
@@ -623,9 +676,9 @@
623676
"name": "python",
624677
"nbconvert_exporter": "python",
625678
"pygments_lexer": "ipython3",
626-
"version": "3.7.5"
679+
"version": "3.11.3"
627680
}
628681
},
629682
"nbformat": 4,
630-
"nbformat_minor": 2
683+
"nbformat_minor": 4
631684
}

hands-on/system_information.ipynb

+14-28
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,7 @@
1212
"cell_type": "markdown",
1313
"metadata": {},
1414
"source": [
15-
"Install `sh` since it doesn't seem to be available."
16-
]
17-
},
18-
{
19-
"cell_type": "code",
20-
"execution_count": null,
21-
"metadata": {},
22-
"outputs": [],
23-
"source": [
24-
"!pip install sh"
15+
"Install `sh` if it doesn't seem to be available."
2516
]
2617
},
2718
{
@@ -34,7 +25,12 @@
3425
"import os\n",
3526
"import platform\n",
3627
"import psutil\n",
37-
"import sh\n",
28+
"try:\n",
29+
" import sh\n",
30+
"except ModuleNotFoundError:\n",
31+
" print('installing sh using pip')\n",
32+
" !pip install sh\n",
33+
" import sh\n",
3834
"import sys"
3935
]
4036
},
@@ -152,15 +148,6 @@
152148
"platform.version()"
153149
]
154150
},
155-
{
156-
"cell_type": "code",
157-
"execution_count": null,
158-
"metadata": {},
159-
"outputs": [],
160-
"source": [
161-
"platform.linux_distribution()"
162-
]
163-
},
164151
{
165152
"cell_type": "code",
166153
"execution_count": null,
@@ -233,13 +220,11 @@
233220
{
234221
"cell_type": "code",
235222
"execution_count": null,
236-
"metadata": {
237-
"scrolled": false
238-
},
223+
"metadata": {},
239224
"outputs": [],
240225
"source": [
241226
"for process in psutil.process_iter():\n",
242-
" if 'chrome' in process.name():\n",
227+
" if 'python' in process.name():\n",
243228
" cpu_times = process.cpu_times()\n",
244229
" thread_str = f'threads: {process.num_threads()}'\n",
245230
" cpu_str = f'user: {cpu_times.user}, sys: {cpu_times.system}'\n",
@@ -328,7 +313,8 @@
328313
"outputs": [],
329314
"source": [
330315
"for user in psutil.users():\n",
331-
" started = datetime.strftime(datetime.fromtimestamp(user.started), '%Y-%m-%d %H:%M:%S')\n",
316+
" started = datetime.strftime(datetime.fromtimestamp(user.started),\n",
317+
" '%Y-%m-%d %H:%M:%S')\n",
332318
" print(f'{user.name}: {started}')"
333319
]
334320
},
@@ -432,7 +418,7 @@
432418
],
433419
"metadata": {
434420
"kernelspec": {
435-
"display_name": "Python 3",
421+
"display_name": "Python 3 (ipykernel)",
436422
"language": "python",
437423
"name": "python3"
438424
},
@@ -446,9 +432,9 @@
446432
"name": "python",
447433
"nbconvert_exporter": "python",
448434
"pygments_lexer": "ipython3",
449-
"version": "3.7.5"
435+
"version": "3.11.3"
450436
}
451437
},
452438
"nbformat": 4,
453-
"nbformat_minor": 2
439+
"nbformat_minor": 4
454440
}

python_for_systems_programming.pptx

-65 Bytes
Binary file not shown.

source-code/command-line-arguments/Fire/sayer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def __init__(self, hello_name=None, bye_name=None):
5555
self.bye = Bye(bye_name)
5656

5757
def to(self):
58-
return 'Do you want to say hello or bye'
58+
return 'Do you want to say hello or bye?'
5959

6060
def info(self):
6161
return 'This is version 0.1beta'

source-code/data-formats/read_xml.py

+6-9
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ def finish(self):
2424
self._data.sort()
2525

2626
def __str__(self):
27-
return '\n'.join(['{0}: {1}'.format(self.name, x)
28-
for x in self._data])
27+
return '\n'.join([f'{self.name}: {value}' for value in self._data])
2928

3029

3130
class BlocksHandler(ContentHandler):
@@ -54,10 +53,8 @@ def startDocument(self):
5453

5554
def startElement(self, name, attrs):
5655
if name == 'block':
57-
logging.info('start of {0}'.format(attrs.getValue('name')))
58-
parent_name = ''
59-
if self._stack:
60-
parent_name = self._stack[-1].name + '/'
56+
logging.info(f'start of {attrs.getValue("name")}')
57+
parent_name = f'{self._stack[-1].name}/' if self._stack else ''
6158
block = Block(parent_name + attrs.getValue('name'))
6259
self._stack.append(block)
6360
elif name == 'item':
@@ -68,15 +65,15 @@ def characters(self, contents):
6865
contents = contents.strip()
6966
if contents:
7067
data = float(contents.strip())
71-
logging.info("found '{0}'".format(data))
68+
logging.info(f"found '{data}'")
7269
self._stack[-1].add_data(data)
7370

7471
def endElement(self, name):
7572
if name == 'block':
7673
block = self._stack.pop()
7774
block.finish()
7875
self._blocks.append(block)
79-
logging.info('end of {0}'.format(block.name))
76+
logging.info(f'end of {block.name}')
8077
elif name == 'item':
8178
self.in_item = False
8279

@@ -86,7 +83,7 @@ def endDocument(self):
8683

8784
def main():
8885
arg_parser = ArgumentParser(description='reformat XML code')
89-
arg_parser.add_argument('-verbose', action='store_true',
86+
arg_parser.add_argument('--verbose', action='store_true',
9087
help='print verbose output')
9188
arg_parser.add_argument('file', type=FileType('r'),
9289
help='XML file to convert')

source-code/logging/log_it_all.py

+12-11
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,30 @@
33
from argparse import ArgumentParser
44
import logging
55
import math
6-
import os
6+
from pathlib import Path
77
import sys
88

99

1010
def do_stuff(n):
1111
if n < 0:
12-
logging.error('can not do stuff for {0}'.format(n))
12+
logging.error(f'can not do stuff for {n}')
1313
return 1
1414
for i in range(n):
15-
logging.info('doing stuff {0}'.format(str(i)))
16-
print('doing {0}: {1:.4f}'.format(i, math.sqrt(i)))
17-
logging.info('done stuff {0}'.format(str(i)))
15+
logging.info(f'doing stuff {i}')
16+
print(f'doing {i}: {math.sqrt(i):.4f}')
17+
logging.info(f'done stuff {i}')
1818
return 0
1919

2020

2121
def main():
2222
arg_parser = ArgumentParser(description='example for logging facility')
23-
arg_parser.add_argument('-log', dest='log_file',
23+
arg_parser.add_argument('--log', dest='log_file',
2424
help='name of log file')
25-
arg_parser.add_argument('-info', action='store_true',
25+
arg_parser.add_argument('--info', action='store_true',
2626
help='set log level to info')
27-
arg_parser.add_argument('-new_log', action='store_true',
27+
arg_parser.add_argument('--new_log', action='store_true',
2828
help='overwrite existing log file')
29-
arg_parser.add_argument('-n', type=int, default=1,
29+
arg_parser.add_argument('--n', type=int, default=1,
3030
help='number of times to do stuff')
3131
options = arg_parser.parse_args()
3232
format_str = '%(asctime)s:%(levelname)s:%(message)s'
@@ -39,14 +39,15 @@ def main():
3939
else:
4040
filemode = 'a'
4141
if options.log_file:
42-
exists = os.path.exists(options.log_file)
42+
log_file = Path(options.log_file)
43+
exists = log_file.exists()
4344
logging.basicConfig(level=level, filename=options.log_file,
4445
filemode=filemode, format=format_str)
4546
else:
4647
exists = False
4748
logging.basicConfig(level=level, format=format_str)
4849
if exists:
49-
logging.warn('overwriting existing log file')
50+
logging.warning('overwriting existing log file')
5051
logging.info('application started')
5152
logging.info('logger initialized')
5253
status = do_stuff(options.n)

0 commit comments

Comments
 (0)