I'm retrieving data from my flask app as json and trying to turn my json values into a list.
In my html I have the following:
<script>
...
series: [{
name: 'Installation',
data: [{% for x in results %}{{ x.TestInstallation }}{% endfor %}]},
...
</script>
data: above should have values displayed as a list:
data: [10957, 10372, 10256, 10074, 8816, 8605, 9524, 10888, 11188, 10305, 13367, 10775, 9963, 12758, 13361, 10843]
my current input for data: is the following:
data: [1095710372102561007488168605952410888111881030513367107759963127581336110843]},
How can I turn values assigned to data: into a list?