Log handler and exception hook to verbalize messages.
Project description
Say It To My Face
Have you ever written a bunch of code and everything is going well for the first time in computer history, and then some dreaded exception kills your hopes and dreams? Did you then make menacing glances at the computer, the source of all of your problems, and mutter “I bet you wouldn’t say that to my face.”
Well now it can.
And it will.
Usage
To have the interpreter tell you about your failings, the say_exceptions_to_my_face function is available. It uses a logging handler to read exception messages that come in through an exception hook.
>>> import say_it_to_my_face >>> say_it_to_my_face.say_exceptions_to_my_face() >>> raise AttributeError("lol that's not an attribute") # A voice will read the message to you Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: lol that's not an attribute
You can also have all of your logs read to you via that log handler. You can also pass it the name of a voice to use, though by default it picks this up from your locale.
>>> import logging >>> import say_it_to_my_face >>> handler = say_it_to_my_face.SayItToMyFace(voice="Daniel") >>> logger = logging.getLogger() >>> logger.addHandler(handler) >>> logger.critical("why did you do that?")
Requirements
Python >= 3.3
The say program on OS X or apparently the espeak on Ubuntu, though I haven’t tried it, it just looks similar.
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
Hashes for say_it_to_my_face-1.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d11a71cbaa1fea86ee01ccb491298325f6a3546cb01b9e222bcd8ad7fc38cb78 |
|
MD5 | 236a65d3d2669b927eb51d53065e3622 |
|
BLAKE2b-256 | 4380c6ef0ed4fc6cfa6ca3083d860d70348c4305ee25b10e4a46e2dac93b4da7 |