hejianqiang

Results 1 issues of hejianqiang

# thrift struct WordCloudParam { 1: optional map word_counts # {'a': 10, 'b': 20} } ====== import thriftpy2.protocol.json as thrift_json param_obj = WordCloudParam(word_counts={'a': 10, 'b': 20}) param_json = thrift_json.struct_to_json(param_obj) it...

question