from geoalchemy2 import WKBElement
import simplejson as json
json.dumps({'a': [WKBElement('abcde')]})
I tried to use the default as parser to due with WKBElement, but the code is not going into the parser, how could I do the customized serialization?
I tried to use the
defaultas parser to due withWKBElement, but the code is not going into the parser, how could I do the customized serialization?