Skip to content

Commit 4fe0be2

Browse files
committed
updating toc json
1 parent 18b05d0 commit 4fe0be2

File tree

2 files changed

+44
-42
lines changed

2 files changed

+44
-42
lines changed

labs/coding-201-parsing-xml/coding-201-parsing-xml.json

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -27,43 +27,44 @@
2727
],
2828
"related": [
2929
{
30-
"labId": "coding-101-rest-basics",
31-
"title": "Coding 101: REST API Basics"
30+
"labId": "rest-basics",
31+
"title": "REST API Basics"
3232
},
3333
{
34-
"labId": "coding-102-rest-python",
35-
"title": "Coding 102: Calling REST APIs from Python"
34+
"labId": "rest-python",
35+
"title": "Calling REST APIs from Python"
3636
},
3737
{
38-
"labId": "coding-201-parsing-xml",
39-
"title": "Coding 201: Parsing XML with Python"
38+
"labId": "parsing-xml",
39+
"title": "Parsing XML with Python"
4040
},
4141
{
42-
"labId": "coding-202-parsing-json",
43-
"title": "Coding 202: Parsing JSON with Python"
42+
"labId": "parsing-json",
43+
"title": "Parsing JSON with Python"
4444
},
4545
{
46-
"labId": "coding-203-getting-input",
47-
"title": "Coding 203: Getting input from a user using Python"
46+
"labId": "getting-input",
47+
"title": "Getting input from a user using Python"
4848
},
4949
{
50-
"labId": "coding-204-reading-a-file",
51-
"title": "Coding 204: Reading from a file using Python"
50+
"labId": "reading-a-file",
51+
"title": "Reading from a file using Python"
5252
},
5353
{
54-
"labId": "coding-205-writing-file",
55-
"title": "Coding 205: Writing data to a file using Python"
54+
"labId": "writing-file",
55+
"title": "Writing data to a file using Python"
5656
},
5757
{
58-
"labId": "coding-206-logging",
59-
"title": "Coding 206: How to use the logging module in Python"
58+
"labId": "logging",
59+
"title": "How to use the logging module in Python"
6060
},
6161
{
62-
"labId": "coding-207-putting-it-together",
63-
"title": "Coding 207:Python - Putting it all together"
62+
"labId": "putting-it-together",
63+
"title": "Python - Putting it all together"
6464
}
6565
],
6666
"authors": [
67-
{"name": "brtiller", "email": "[email protected]"}
67+
{"name": "brtiller", "email": "[email protected]"},
68+
{"name": "qsnyder", "email": "[email protected]"}
6869
]
6970
}
Lines changed: 24 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"labId": "coding-202-parsing-json",
3-
"title": "Coding 202 - Parsing JSON",
2+
"labId": "parsing-json",
3+
"title": "Parsing JSON",
44
"slug": "Learn the basics of how to use parse JSON results using Python.",
55
"byod": true,
66
"time": "15",
@@ -9,7 +9,7 @@
99
"file": "1.md"},
1010
{"title": "Step 2: Use the JSON Python library",
1111
"file": "2.md"},
12-
{"title": "Step 3: Iterate through a JSON array in Python",
12+
{"title": "Step 3: Iterate through a JSON dictionary in Python",
1313
"file":"3.md"},
1414
{"title": "Step 4: Find additional resources",
1515
"file": "4.md"}
@@ -20,48 +20,49 @@
2020
{"title": "Parsing"},
2121
{"title": "JSON"},
2222
{"title": "Python"},
23-
{"title": "CMX"},
23+
{"title": "ACI"},
2424
{"title" : "Sandbox" }
2525
],
2626
"related": [
2727
{
28-
"labId": "coding-101-rest-basics",
29-
"title": "Coding 101: REST API Basics"
28+
"labId": "rest-basics",
29+
"title": "REST API Basics"
3030
},
3131
{
32-
"labId": "coding-102-rest-python",
33-
"title": "Coding 102: Calling REST APIs from Python"
32+
"labId": "rest-python",
33+
"title": "Calling REST APIs from Python"
3434
},
3535
{
36-
"labId": "coding-201-parsing-xml",
37-
"title": "Coding 201: Parsing XML with Python"
36+
"labId": "parsing-xml",
37+
"title": "Parsing XML with Python"
3838
},
3939
{
40-
"labId": "coding-202-parsing-json",
41-
"title": "Coding 202: Parsing JSON with Python"
40+
"labId": "parsing-json",
41+
"title": "Parsing JSON with Python"
4242
},
4343
{
44-
"labId": "coding-203-getting-input",
45-
"title": "Coding 203: Getting input from a user using Python"
44+
"labId": "getting-input",
45+
"title": "Getting input from a user using Python"
4646
},
4747
{
48-
"labId": "coding-204-reading-a-file",
49-
"title": "Coding 204: Reading from a file using Python"
48+
"labId": "reading-a-file",
49+
"title": "Reading from a file using Python"
5050
},
5151
{
52-
"labId": "coding-205-writing-file",
53-
"title": "Coding 205: Writing data to a file using Python"
52+
"labId": "writing-file",
53+
"title": "Writing data to a file using Python"
5454
},
5555
{
56-
"labId": "coding-206-logging",
57-
"title": "Coding 206: How to use the logging module in Python"
56+
"labId": "logging",
57+
"title": "How to use the logging module in Python"
5858
},
5959
{
60-
"labId": "coding-207-putting-it-together",
61-
"title": "Coding 207:Python - Putting it all together"
60+
"labId": "putting-it-together",
61+
"title": "Python - Putting it all together"
6262
}
6363
],
6464
"authors": [
65-
{"name": "brtiller", "email": "[email protected]"}
65+
{"name": "brtiller", "email": "[email protected]"},
66+
{"name": "qsnyder", "email": "[email protected]"}
6667
]
6768
}

0 commit comments

Comments
 (0)