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
OSUG
RESIF
ws-statistics
Commits
6bed9979
Commit
6bed9979
authored
Nov 04, 2020
by
Jerome Touvier
Browse files
remove thousands separator for csv
parent
31e6cbd5
Changes
1
Hide whitespace changes
Inline
Side-by-side
apps/output.py
View file @
6bed9979
...
...
@@ -134,12 +134,14 @@ def format_results(params, data):
if
params
[
"request"
]
==
"country"
:
if
"all"
in
params
[
"country"
]:
data
=
[[
"all"
,
data
[
0
][
0
],
data
[
0
][
1
]]]
for
row
in
data
:
row
[:]
=
[
row
[
0
],
"{:_}"
.
format
(
row
[
1
]),
"{:_}"
.
format
(
row
[
2
])]
if
params
[
"format"
]
!=
"csv"
:
for
row
in
data
:
row
[:]
=
[
row
[
0
],
"{:_}"
.
format
(
row
[
1
]),
"{:_}"
.
format
(
row
[
2
])]
elif
params
[
"request"
]
==
"send"
:
result
=
data
[
0
][
0
]
data
=
[[
"{:_}"
.
format
(
result
)
+
f
" bytes (
{
human_readable_size
(
result
)
}
)"
]]
if
params
[
"format"
]
!=
"csv"
:
result
=
data
[
0
][
0
]
data
=
[[
"{:_}"
.
format
(
result
)
+
f
" bytes (
{
human_readable_size
(
result
)
}
)"
]]
data
=
[[
str
(
val
)
for
val
in
row
]
for
row
in
data
]
return
data
...
...
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