Extend the capabilities of the standard displayhook in Python
Project description
displayhooks
It's a micro library for manipulating sys.displayhook
.
When you need to change the standard behavior of displayhook
, with this library you will do it:
- declaratively
- compactly
- beautifully
Table of contents
- Quick start
- Change the displayed value
- Prohibiting the display of certain types of values
- Automatic recovery of the default hook
Quick start
Install it:
pip install displayhooks
And use:
import sys
from displayhooks import not_display
not_display(int)
sys.displayhook('Most of the adventures recorded in this book really occurred; one or two were experiences of my own, the rest those of boys who were schoolmates of mine.')
#> 'Most of the adventures recorded in this book really occurred; one or two were experiences of my own, the rest those of boys who were schoolmates of mine.'
sys.displayhook(666)
# [nothing!]
Change the displayed value
You can declaratively declare a converter function for the printed values. What it returns will be used to call the original displayhook
function.
import sys
from displayhooks import converted_displayhook
@converted_displayhook
def new_displayhook(value):
return value.lower()
sys.displayhook("What’s gone with that boy, I wonder? You TOM!")
#> 'what’s gone with that boy, i wonder? you tom!'
If your function returns None
, nothing will be printed.
Prohibiting the display of certain types of values
You can disable the display of certain data types, similar to how NoneType
values are ignored by default.
You could already see a similar example above, let's look at it again:
import sys
from types import FunctionType
from displayhooks import not_display
not_display(FunctionType)
sys.displayhook('Nothing! Look at your hands. And look at your mouth. What is that truck?')
#> 'Nothing! Look at your hands. And look at your mouth. What is that truck?'
sys.displayhook(lambda x: x)
# [nothing!]
In this example, you can see that we have disabled the display for functions, but all other data types are displayed unchanged.
Automatic recovery of the default hook
You can limit the impact on sys.displayhook
only to the code inside a function. If you hang the autorestore_displayhook
decorator on it, after exiting the function, the displayhook that was installed before it was called will be automatically restored:
import sys
from types import FunctionType
from displayhooks import not_display, autorestore_displayhook
@autorestore_displayhook
def do_something_dangerous():
not_display(FunctionType)
sys.displayhook(do_something_dangerous)
# [nothing!]
do_something_dangerous()
sys.displayhook(do_something_dangerous)
#> <function do_something_dangerous at 0x104c980e0>
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file displayhooks-0.0.2.tar.gz
.
File metadata
- Download URL: displayhooks-0.0.2.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd72d833b2fd7eba5c5a5b05d486f8519f0e35ee573a759755f84697a81938d8 |
|
MD5 | 202af73c10394306e7d190c984377335 |
|
BLAKE2b-256 | 6f5065a56b5cba83986a4bdf9b4a07ac26b3bac97f8349f0277cb2396c91774c |
File details
Details for the file displayhooks-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: displayhooks-0.0.2-py3-none-any.whl
- Upload date:
- Size: 5.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7eb7b9b5dce2ff2db669cc31eb6526a13449e1d8d0ed054bfe4d9924cd130ebe |
|
MD5 | 6c13b272192f6bd311c02267ea93a197 |
|
BLAKE2b-256 | c6a66e8f289627943726a9b4a5c4d80864f74098a7367907804f3521658b1a5e |