Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Political Memory
django-representatives
Commits
a017e7b8
Commit
a017e7b8
authored
Jun 22, 2013
by
Bram
Browse files
[enh] export emails
parent
b07a3bc3
Changes
1
Hide whitespace changes
Inline
Side-by-side
representatives/management/commands/export_in_representatives_format.py
View file @
a017e7b8
...
...
@@ -16,6 +16,9 @@ class Command(BaseCommand):
reps
[
"personal"
][
"gender"
]
=
gender_dict
[
representative
.
gender
]
reps
[
"personal"
][
"birth_date"
]
=
representative
.
birth_date
.
strftime
(
"%F"
)
if
representative
.
birth_date
else
None
reps
[
"contact"
]
=
{}
reps
[
"contact"
][
"emails"
]
=
[{
"email"
:
email
.
email
,
"type"
:
email
.
kind
}
for
email
in
representative
.
email_set
.
all
()]
result
.
append
(
reps
)
print
json
.
dumps
(
result
,
indent
=
4
)
Write
Preview
Supports
Markdown
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