现在我想把JSON文件中每个值的所有空格和换行都去掉。
使用
pkgutil.simplegeneric()
来创建一个辅助函数
get_items()
。
import json
import sys
from pkgutil import simplegeneric
@simplegeneric
def get_items(obj):
while False: # no items, a scalar object
yield None
@get_items.register(dict)
def _(obj):
return obj.items() # json object. Edit: iteritems() was removed in Python 3
@get_items.register(list)
def _(obj):
return enumerate(obj) # json array
def strip_whitespace(json_data):
for key, value in get_items(json_data):
if hasattr(value, 'strip'): # json string
json_data[key] = value.strip()
else:
strip_whitespace(value) # recursive call
data = json.load(sys.stdin) # read json data from standard input
strip_whitespace(data)
json.dump(data, sys.stdout, indent=2)
Note: functools.singledispatch()
函数(Python 3.4以上)将允许使用collections
'MutableMapping/MutableSequence
而不是dict/list
在这里。
Output
"anotherName": [
"anArray": [
"anotherKey": "value",
"key": "value"
"anotherKey": "value",
"key": "value"
"name": [
"someKey": "some Value"
"someKey": "another value"