Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vaaaaanquish/xontrib-readable-traceback
xonsh readable traceback
https://github.com/vaaaaanquish/xontrib-readable-traceback
shell xonsh xontrib
Last synced: 25 days ago
JSON representation
xonsh readable traceback
- Host: GitHub
- URL: https://github.com/vaaaaanquish/xontrib-readable-traceback
- Owner: vaaaaanquish
- License: mit
- Created: 2019-04-13T15:40:58.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-09-06T19:43:38.000Z (over 2 years ago)
- Last Synced: 2024-05-17T03:12:05.370Z (7 months ago)
- Topics: shell, xonsh, xontrib
- Language: Xonsh
- Homepage:
- Size: 299 KB
- Stars: 10
- Watchers: 4
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-xontribs - readable-traceback - Make traceback easier to see for xonsh. (Plugins / Prompt tweaks)
README
# xontrib-readable-traceback
Make traceback easier to see for xonsh.Python work very often with large libraries like pandas, or matplotlib. This means that exceptions often produce long stack traces. Since we don't need to see the library detail in the vast majority of cases. Especially with a shell like xonsh.
This xontrib making readable and short traceback.
example:
Simple division by zero error.example:
This simple pandas error produces a stacktrace containing 28 lines. But xontrib load...# Install
Install using pip```
pip install xontrib-readable-traceback
```Write .xonshrc
```
xontrib load readable-traceback
```# Usage
This xontrib use [backtrace package](https://github.com/nir0s/backtrace).
For the main usage, please refer to the following.
https://github.com/nir0s/backtrace#usage
## Example xonshrc
xonshrc sample.
```
~~~
xontrib load readable-traceback
$READABLE_TRACE_STRIP_PATH_ENV=True
$READABLE_TRACE_REVERSE=True
~~~
```## Setting backtrace
The correspondence with the variable of [backtrace](https://github.com/nir0s/backtrace) is as follows.
| backtrace | xontrib-readable-traceback | Type |
----|----|----|
| reverse | $READABLE_TRACE_REVERSE | bool |
| align | $READABLE_TRACE_ALIGN | bool |
| strip_path | $READABLE_TRACE_STRIP_PATH_ENV | bool |
| enable_on_envvar_only | $READABLE_TRACE_ENVVAR_ONLY | bool |
| on_tty | $READABLE_TRACE_ON_TTY | bool |
| conservative | $READABLE_TRACE_CONSERVATIVE | bool |
| style | $READABLE_TRACE_STYLES | dict |For details of `style` please refer to [backtrace#style](https://github.com/nir0s/backtrace#styles) and [colorama](https://github.com/tartley/colorama).
## Switching readable-traceback
If we want to turn trace off, we can use:
```
$XONSH_READABLE_TRACEBACK=False
```If so, the notation of traceback follows xonsh_env(`$XONSH_SHOW_TRACEBACK`).
## Xonsh traceback log
Xonsh can keep a log of traceback.
To keep the log, write `"ABSOLUTE PATH TO TRACEBACK LOG"` below.
```
$XONSH_TRACEBACK_LOGFILE="PATH"
```
If it is None, no log is kept.
Default is None.# Thanks
Thanks
- https://github.com/xonsh/xonsh
- https://github.com/nir0s/backtrace
- https://github.com/laerus/cookiecutter-xontribI appreciate all Python's assets and xonsh.
If there is something problem, up to github issue.
[@vaaaaanquish](https://twitter.com/vaaaaanquish)