Python json格式化打印实现过程解析


Posted in Python onJuly 21, 2020

编写python脚本,调试的时候需要打印json格式报文,直接打印看不出层次,可以使用json.dumps格式化打印

import json
import requests

def test_json():
  r=requests.get('https://home.testing-studio.com/categories.json')
  print(r.json())
  print(json.dumps(r.json(), indent=2,ensure_ascii=False)) # r.json()是json对象,indent表示缩进,ensure_ascii设置编码
格式化打印前:

格式化打印前:

Python json格式化打印实现过程解析

格式化打印后:

Python json格式化打印实现过程解析

json.dumps方法源码:

def dumps(obj, *, skipkeys=False, ensure_ascii=True, check_circular=True,
    allow_nan=True, cls=None, indent=None, separators=None,
    default=None, sort_keys=False, **kw):
  """Serialize ``obj`` to a JSON formatted ``str``.

  If ``skipkeys`` is true then ``dict`` keys that are not basic types
  (``str``, ``int``, ``float``, ``bool``, ``None``) will be skipped
  instead of raising a ``TypeError``.

  If ``ensure_ascii`` is false, then the return value can contain non-ASCII
  characters if they appear in strings contained in ``obj``. Otherwise, all
  such characters are escaped in JSON strings.

  If ``check_circular`` is false, then the circular reference check
  for container types will be skipped and a circular reference will
  result in an ``OverflowError`` (or worse).

  If ``allow_nan`` is false, then it will be a ``ValueError`` to
  serialize out of range ``float`` values (``nan``, ``inf``, ``-inf``) in
  strict compliance of the JSON specification, instead of using the
  JavaScript equivalents (``NaN``, ``Infinity``, ``-Infinity``).

  If ``indent`` is a non-negative integer, then JSON array elements and
  object members will be pretty-printed with that indent level. An indent
  level of 0 will only insert newlines. ``None`` is the most compact
  representation.

  If specified, ``separators`` should be an ``(item_separator, key_separator)``
  tuple. The default is ``(', ', ': ')`` if *indent* is ``None`` and
  ``(',', ': ')`` otherwise. To get the most compact JSON representation,
  you should specify ``(',', ':')`` to eliminate whitespace.

  ``default(obj)`` is a function that should return a serializable version
  of obj or raise TypeError. The default simply raises TypeError.

  If *sort_keys* is true (default: ``False``), then the output of
  dictionaries will be sorted by key.

  To use a custom ``JSONEncoder`` subclass (e.g. one that overrides the
  ``.default()`` method to serialize additional types), specify it with
  the ``cls`` kwarg; otherwise ``JSONEncoder`` is used.

  """
  # cached encoder
  if (not skipkeys and ensure_ascii and
    check_circular and allow_nan and
    cls is None and indent is None and separators is None and
    default is None and not sort_keys and not kw):
    return _default_encoder.encode(obj)
  if cls is None:
    cls = JSONEncoder
  return cls(
    skipkeys=skipkeys, ensure_ascii=ensure_ascii,
    check_circular=check_circular, allow_nan=allow_nan, indent=indent,
    separators=separators, default=default, sort_keys=sort_keys,
    **kw).encode(obj)

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python中input()与raw_input()的区别分析
Feb 27 Python
python实现可以断点续传和并发的ftp程序
Sep 13 Python
Python之Web框架Django项目搭建全过程
May 02 Python
python中将字典形式的数据循环插入Excel
Jan 16 Python
详解python中asyncio模块
Mar 03 Python
深入分析python中整型不会溢出问题
Jun 18 Python
python实现字符串中字符分类及个数统计
Sep 28 Python
详解pandas.DataFrame中删除包涵特定字符串所在的行
Apr 04 Python
Python图像处理库PIL的ImageDraw模块介绍详解
Feb 26 Python
Python 抓取数据存储到Redis中的操作
Jul 16 Python
Python如何实现Paramiko的二次封装
Jan 30 Python
Python 中面向接口编程
May 20 Python
基于python实现删除指定文件类型
Jul 21 #Python
python打开音乐文件的实例方法
Jul 21 #Python
Python读取yaml文件的详细教程
Jul 21 #Python
Python中bisect的用法及示例详解
Jul 20 #Python
python为什么要安装到c盘
Jul 20 #Python
python如何代码集体右移
Jul 20 #Python
python接入支付宝的实例操作
Jul 20 #Python
You might like
当海贼王变成JOJO风
2020/03/02 日漫
身份证号码前六位所代表的省,市,区, 以及地区编码下载
2007/04/12 Javascript
日期处理的js库(迷你版)--自建js库总结
2011/11/21 Javascript
拖动table标题实现改变td的大小(css+js代码)
2013/04/16 Javascript
把文本中的URL地址转换为可点击链接的JavaScript、PHP自定义函数
2014/07/29 Javascript
Jquery的基本对象转换和文档加载用法实例
2015/02/25 Javascript
JavaScript对象反射用法实例
2015/04/17 Javascript
jQuery事件的绑定、触发、及监听方法简单说明
2016/05/10 Javascript
15个值得开发人员关注的jQuery开发技巧和心得总结【经典收藏】
2016/05/25 Javascript
JavaScript实现移动端页面按手机屏幕分辨率自动缩放的最强代码
2017/08/18 Javascript
浅谈Vue Element中Select下拉框选取值的问题
2018/03/01 Javascript
nodejs实现套接字服务功能详解
2018/06/21 NodeJs
vue从一个页面跳转到另一个页面并携带参数的解决方法
2019/08/12 Javascript
解决Pycharm中import时无法识别自己写的程序方法
2018/05/18 Python
通过python顺序修改文件名字的方法
2018/07/11 Python
对python requests发送json格式数据的实例详解
2018/12/19 Python
pycharm修改文件的默认打开方式的步骤
2019/07/29 Python
春节到了 教你使用python来抢票回家
2020/01/06 Python
利用pyecharts读取csv并进行数据统计可视化的实现
2020/04/17 Python
CSS3中的opacity属性使用教程
2015/08/19 HTML / CSS
HTML5单页面手势滑屏切换原理
2016/03/21 HTML / CSS
Parfumdreams英国:香水和化妆品
2019/05/10 全球购物
建筑行业的大学生自我评价
2013/12/08 职场文书
美德少年事迹材料1000字
2014/08/21 职场文书
副乡长民主生活会个人对照检查材料思想汇报
2014/10/01 职场文书
高中生逃课检讨书
2014/10/10 职场文书
实习班主任自我评价
2015/03/11 职场文书
2015年社区国庆节活动总结
2015/07/30 职场文书
2015中秋节晚会开场白
2015/07/30 职场文书
经典爱情感言
2015/08/03 职场文书
军事理论课感想
2015/08/11 职场文书
详解JS WebSocket断开原因和心跳机制
2021/05/07 Javascript
使用CSS设置滚动条样式
2022/01/18 HTML / CSS
python中redis包操作数据库的教程
2022/04/19 Python
解决 redis 无法远程连接
2022/05/15 Redis
Win11远程连接不上怎么办?Win11远程桌面用不了的解决方法
2022/08/05 数码科技