What is the most efficient way of serializing a numpy array using simplejson?
One fast, though not truly optimal way is using Pandas:
import pandas as pd pd.Series(your_array).to_json(orient='values')