Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
roomlist
Commits
eed3643f
Commit
eed3643f
authored
Apr 09, 2015
by
Jason Yeomans
Browse files
room-number.py progress [INCOMPLETE]
parent
89372aec
Changes
1
Hide whitespace changes
Inline
Side-by-side
roomlist/housing/room-numbers.py
View file @
eed3643f
...
...
@@ -21,26 +21,33 @@ roomNumbers = open('room-numbers', 'r')
print
"[{"
# for line in file
for
line
in
roomNumbers
:
pk
=
1
curFloorInBuilding
=
1
curFloor
=
1
print
"}, {
\n
"
print
"
\"
floor
\"
: "
+
+
",
\n
"
print
"
\"
number
\"
: "
+
+
",
\n
"
print
"
\"
slug
\"
:
\"
"
+
slug_generator
()
+
"
\"
,
\n
"
print
"
\"
room_num
\"
:
\"
"
+
+
"
\"
,
\n
"
print
" },"
print
"
\"
model
\"
:
\"
housing.room
\"
,
\n
"
print
"
\"
pk
\"
:
\n
"
for
line
in
roomNumbers
:
if
not
prog
.
match
(
'[a-zA-Z]'
,
line
):
print
"}, {
\n
"
print
"
\"
floor
\"
: "
+
curFloor
+
",
\n
"
print
"
\"
number
\"
: "
+
line
+
",
\n
"
print
"
\"
room_num
\"
:
\"
"
+
line
+
"
\"
,
\n
"
print
"
\"
slug
\"
:
\"
"
+
slug_generator
()
+
"
\"
,
\n
"
print
" },"
print
"
\"
model
\"
:
\"
housing.room
\"
,
\n
"
print
"
\"
pk
\"
:
\n
"
pk
++
print
"}]"
"""
}, {
"fields": {
"floor": 8,
"number": 204,
"slug": "8J6yWD",
"floor_num": "2"
"floor": 1,
"created": "2015-04-09T19:56:59.594Z",
"number": 101,
"modified": "2015-04-09T19:56:59.598Z",
"room_num": "101",
"slug": "G4xTdX"
},
"model":"housing.floor",
"pk":44
"model": "housing.room",
"pk": 1
}, {
"""
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment