Last updated:
0 purchases
pprint3x 3.10.4.6
pprint3x
Version v3.10.4.6 as of 2023-07-14 see Changelog
Backport of pprint from Python 3.10.1 to Python 3.7-3.9**
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 (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, flake8 style checking ,mypy static type checking ,tested under Linux, macOS, Windows, automatic daily builds and monitoring
Try it Online
Usage
Usage from Commandline
Installation and Upgrade
Requirements
Acknowledgements
Contribute
Report Issues
Pull Request
Code of Conduct
License
Changelog
Try it Online
You might try it right away in Jupyter Notebook by using the “launch binder” badge, or click here
Usage
to be compatible with the builtin module, just import pprint3x as follows:
>>> from pprint3x import pprint
>>> pprint('test')
'test'
or, if You need the full scope of the pprint namespace :
>>> 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:
python -m pip --upgrade pip
python -m pip --upgrade setuptools
to install the latest release from PyPi via pip (recommended):
python -m pip install --upgrade pprint3x
to install the latest release from PyPi via pip, including test dependencies:
python -m pip install --upgrade pprint3x[test]
to install the latest version from github via pip:
python -m pip install --upgrade git+https://github.com/bitranox/pprint3x.git
include it into Your requirements.txt:
# 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:
# 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.
# 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 :
## 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
License
This software is licensed under the 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
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.