Skip to content

Commit 6ee3091

Browse files
committed
2 parents 4e02418 + cd68b7f commit 6ee3091

File tree

90 files changed

+4022
-240
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+4022
-240
lines changed

.gitignore

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,13 @@ slides_sources/build
33
.DS_Store
44
#ignore compiled files, sublime workspace and project files
55
*.pyc
6+
*junk*
7+
8+
#ignore sublime workspace files
69
*.sublime*
7-
*.*~
10+
11+
# ignore .gitignore, so we can each have our own.
12+
.gitignore
13+
14+
# editor back-up files
15+
*.*~

Examples/Session06/html_render/test_html_output1.html

Lines changed: 0 additions & 4 deletions
This file was deleted.

Examples/Session06/html_render/test_html_output2.html

Lines changed: 0 additions & 11 deletions
This file was deleted.

Examples/Session06/html_render/test_html_output3.html

Lines changed: 0 additions & 14 deletions
This file was deleted.

Examples/Session06/html_render/test_html_output4.html

Lines changed: 0 additions & 11 deletions
This file was deleted.

Examples/Session06/html_render/test_html_output5.html

Lines changed: 0 additions & 12 deletions
This file was deleted.

Examples/Session06/html_render/test_html_output6.html

Lines changed: 0 additions & 15 deletions
This file was deleted.

Examples/Session06/html_render/test_html_output7.html

Lines changed: 0 additions & 26 deletions
This file was deleted.

Examples/Session06/html_render/test_html_output8.html

Lines changed: 0 additions & 27 deletions
This file was deleted.
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
#!/usr/bin/env python
2+
3+
"""
4+
sample data for persistence/serializatiion examples
5+
6+
This version is nested, with more stucture
7+
- can be saved with pickle, JSON, xml...
8+
"""
9+
10+
AddressBook = [ {'first_name': "Chris",
11+
'last_name': "Barker",
12+
'address' : {'line_1':"835 NE 33rd St",
13+
'line_2' : "",
14+
'city' : "Seattle",
15+
'state': "WA",
16+
'zip': "96543"},
17+
'email' : "[email protected]",
18+
'home_phone' : "206-555-1234",
19+
'office_phone' : "123-456-7890",
20+
'cell_phone' : "234-567-8901",
21+
},
22+
23+
{'first_name': "Fred",
24+
'last_name': "Jones",
25+
'address' : {'line_1':"123 SE 13th St",
26+
'line_2' : "Apt. 43",
27+
'city' : "Tacoma",
28+
'state': "WA",
29+
'zip': "93465"},
30+
'email' : "FredJones@some_company.com",
31+
'home_phone' : "510-555-1234",
32+
'office_phone' : "564-466-7990",
33+
'cell_phone' : "403-561-8911",
34+
},
35+
36+
{'first_name': "Nancy",
37+
'last_name': "Wilson",
38+
'address' : {'line_1':"8654 Walnut St",
39+
'line_2' : "Suite 567",
40+
'city' : "Pasadena",
41+
'state': "CA",
42+
'zip': "12345"},
43+
'email' : "[email protected]",
44+
'home_phone' : "423-321-9876",
45+
'office_phone' : "123-765-9877",
46+
'cell_phone' : "432-567-8466",
47+
},
48+
]
49+

0 commit comments

Comments
 (0)