I'm stucked with some problem.
I've sent int array from JS to Python via AJAX and it has been converted to JSON (as I used JSON.stringify()), so now it's a string "[1,2,3,4,5]".
How can I convert it in Python back to int array [1,2,3,4,5]?
I've tried to convert this array to numpy array np.asarray(features_user, dtype="int"), but this not helped
json.loadson that string to convert it into a python list.