I have such url:
http://0.0.0.0:5000/test?id=00000&coords=[55.530974,37.522081]
And there is some part of the code:
id = request.args.get('id')
>'00000'
coords = request.args.get('coords')
> '[55.530974,37.522081]'
I need to get coords not like a string, but like a list [55.530974,37.522081]
Is there solution to convert it? Or make in another way?
Thanks a lot