pprint3x

backport of pprint

MIT License

Downloads
1.2K
Stars
1
Committers
2

pprint3x

Version v3.10.4.6 as of 2023-07-20 see Changelog_

|build_badge| |codeql| |license| |jupyter| |pypi| |pypi-downloads| |black| |codecov| |cc_maintain| |cc_issues| |cc_coverage| |snyk|

.. |build_badge| image:: https://github.com/bitranox/pprint3x/actions/workflows/python-package.yml/badge.svg :target: https://github.com/bitranox/pprint3x/actions/workflows/python-package.yml

.. |codeql| image:: https://github.com/bitranox/pprint3x/actions/workflows/codeql-analysis.yml/badge.svg?event=push :target: https://github.com//bitranox/pprint3x/actions/workflows/codeql-analysis.yml

.. |license| image:: https://img.shields.io/github/license/webcomics/pywine.svg :target: http://en.wikipedia.org/wiki/MIT_License

.. |jupyter| image:: https://mybinder.org/badge_logo.svg :target: https://mybinder.org/v2/gh/bitranox/pprint3x/master?filepath=pprint3x.ipynb

.. for the pypi status link note the dashes, not the underscore ! .. |pypi| image:: https://img.shields.io/pypi/status/pprint3x?label=PyPI%20Package :target: https://badge.fury.io/py/pprint3x

.. |codecov| image:: https://img.shields.io/codecov/c/github/bitranox/pprint3x :target: https://codecov.io/gh/bitranox/pprint3x

.. |cc_maintain| image:: https://img.shields.io/codeclimate/maintainability-percentage/bitranox/pprint3x?label=CC%20maintainability :target: https://codeclimate.com/github/bitranox/pprint3x/maintainability :alt: Maintainability

.. |cc_issues| image:: https://img.shields.io/codeclimate/issues/bitranox/pprint3x?label=CC%20issues :target: https://codeclimate.com/github/bitranox/pprint3x/maintainability :alt: Maintainability

.. |cc_coverage| image:: https://img.shields.io/codeclimate/coverage/bitranox/pprint3x?label=CC%20coverage :target: https://codeclimate.com/github/bitranox/pprint3x/test_coverage :alt: Code Coverage

.. |snyk| image:: https://snyk.io/test/github/bitranox/pprint3x/badge.svg :target: https://snyk.io/test/github/bitranox/pprint3x

.. |black| image:: https://img.shields.io/badge/code%20style-black-000000.svg :target: https://github.com/psf/black

.. |pypi-downloads| image:: https://img.shields.io/pypi/dm/pprint3x :target: https://pypi.org/project/pprint3x/ :alt: PyPI - Downloads

.. start short_desc

Backport of pprint from Python 3.10.1 to Python 3.7-3.9**

.. end short_desc

The pertinent changes from Python 3.7 to Python 3.9 are:

  • pprint can now pretty-print types.SimpleNamespace. Contributed by Carl Bordum Hansenin Python 3.9.

  • pprint.pp has been added to pretty-print objects with dictionary keys being sorted with their insertion order by default. Parameter sort_dicts has been added to pprint.pprint, pprint.pformat and pprint.PrettyPrinter. Contributed by Rémi Lapeyre in Python 3.8.


automated tests, Github Actions, Documentation, Badges, etc. are managed with PizzaCutter <https://github .com/bitranox/PizzaCutter>_ (cookiecutter on steroids)

Python version required: 3.8.0 or newer

tested on recent linux with python 3.8, 3.9, 3.10, 3.11, 3.12-dev, pypy-3.9, pypy-3.10 - architectures: amd64

100% code coverage <https://codeclimate.com/github/bitranox/pprint3x/test_coverage>, flake8 style checking ,mypy static type checking ,tested under Linux, macOS, Windows <https://github.com/bitranox/pprint3x/actions/workflows/python-package.yml>, automatic daily builds and monitoring


  • Try it Online_
  • Usage_
  • Usage from Commandline_
  • Installation and Upgrade_
  • Requirements_
  • Acknowledgements_
  • Contribute_
  • Report Issues <https://github.com/bitranox/pprint3x/blob/master/ISSUE_TEMPLATE.md>_
  • Pull Request <https://github.com/bitranox/pprint3x/blob/master/PULL_REQUEST_TEMPLATE.md>_
  • Code of Conduct <https://github.com/bitranox/pprint3x/blob/master/CODE_OF_CONDUCT.md>_
  • License_
  • Changelog_

Try it Online

You might try it right away in Jupyter Notebook by using the "launch binder" badge, or click here <https://mybinder.org/v2/gh/{{rst_include. repository_slug}}/master?filepath=pprint3x.ipynb>_

Usage

to be compatible with the builtin module, just import pprint3x as follows:

.. code-block:: python

>>> from pprint3x import pprint
>>> pprint('test')
'test'

or, if You need the full scope of the pprint namespace :

.. code-block:: python

>>> import pprint3x as pprint
>>> pprint.pprint('test')
'test'
>>> pprint.isreadable('test')
True

for documentation of pprint itself, see : https://docs.python.org/3/library/pprint.html (select Python Version 3.10.1)

Usage from Commandline

there are no cli commands

Installation and Upgrade

  • Before You start, its highly recommended to update pip and setup tools:

.. code-block::

python -m pip --upgrade pip
python -m pip --upgrade setuptools
  • to install the latest release from PyPi via pip (recommended):

.. code-block::

python -m pip install --upgrade pprint3x
  • to install the latest release from PyPi via pip, including test dependencies:

.. code-block::

python -m pip install --upgrade pprint3x[test]
  • to install the latest version from github via pip:

.. code-block::

python -m pip install --upgrade git+https://github.com/bitranox/pprint3x.git
  • include it into Your requirements.txt:

.. code-block::

# Insert following line in Your requirements.txt:
# for the latest Release on pypi:
pprint3x

# for the latest development version :
pprint3x @ git+https://github.com/bitranox/pprint3x.git

# to install and upgrade all modules mentioned in requirements.txt:
python -m pip install --upgrade -r /<path>/requirements.txt
  • to install the latest development version, including test dependencies from source code:

.. code-block::

# cd ~
$ git clone https://github.com/bitranox/pprint3x.git
$ cd pprint3x
python -m pip install -e .[test]
  • via makefile:
    makefiles are a very convenient way to install. Here we can do much more,
    like installing virtual environments, clean caches and so on.

.. code-block:: shell

# from Your shell's homedirectory:
$ git clone https://github.com/bitranox/pprint3x.git
$ cd pprint3x

# to run the tests:
$ make test

# to install the package
$ make install

# to clean the package
$ make clean

# uninstall the package
$ make uninstall

Requirements

following modules will be automatically installed :

.. code-block:: bash

## Project Requirements
dataclasses; python_version < '3.7'

Acknowledgements

  • special thanks to "uncle bob" Robert C. Martin, especially for his books on "clean code" and "clean architecture"

Contribute

I would love for you to fork and send me pull request for this project.

  • please Contribute <https://github.com/bitranox/pprint3x/blob/master/CONTRIBUTING.md>_

License

This software is licensed under the MIT license <http://en.wikipedia.org/wiki/MIT_License>_


Changelog

  • new MAJOR version for incompatible API changes,
  • new MINOR version for added functionality in a backwards compatible manner
  • new PATCH version for backwards compatible bug fixes

v3.10.4.6

2023-07-14: - flake8 - remove some tests for underscore numbers

v3.10.4.5

2023-07-14: - add codeql badge - move 3rd_party_stubs outside the src directory - add pypy 3.10 tests - add python 3.12-dev tests

v3.10.4.4

2023-07-13: - require minimum python 3.8 - remove python 3.7 tests

v3.10.4.3

2023-07-13: - introduce PEP517 packaging standard - introduce pyproject.toml build-system - remove setup.cfg - remove setup.py - update black config - clean ./tests/test_cli.py - remove travis config - remove bettercodehub config - remove "better code" badges - remove python 3.6 tests - adding python 3.11 tests - update pypy tests to 3.9

v3.10.4.2

2022-06-02: update to github actions checkout@v3 and setup-python@v3

v3.10.4.1

2022-06-01: update github actions test matrix

v3.10.4

2022-03-25: fix github actions windows test

v3.10.3

2022-01-21: update documentation, again thanks to Ritvik Nag, https://github.com/rnag

v3.10.2

2022-01-20: remove unnecessary dependencies, thanks to Ritvik Nag, https://github.com/rnag

v3.10.1

2021-12-30: initial release