Metadata-Version: 2.1
Name: etupem
Version: 0.2.1
Summary: Easy To Understand Python Error Message
Home-page: https://github.com/nodai2hITC/etupem/
Author: nodai2hITC
Author-email: nodai2h.itc@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# etupem

Easy To Understand Python Error Message.

Currently, it is only available in Japanese.

Python のエラーメッセージを日本語で表示します。

## Requirements

- Python 3.8 or newer

## Recommended

- Python 3.10 or newer

## Install

    $ pip install etupem

## Usage (for Japanese)

    $ pythonja script.py

## Example

For example, run the following script.

```python:type_error.py
"123" + 456
```

Original python error message:

```
$ python type_error.py
Traceback (most recent call last):
  File "E:\scripts\type_error.py", line 1, in <module>
    "123" + 456
TypeError: can only concatenate str (not "int") to str
```

When using etupem

```
$ pythonja type_error.py
Traceback (most recent call last):
  File "E:\scripts\type_error.py", line 1, in <module>
    "123" + 456
TypeError: can only concatenate str (not "int") to str
上に表示されているのが本来のエラーメッセージです。エラーについて調べる場合は、上のエラーメッセージで検索して下さい。
【型に関するエラー(TypeError)】
ファイル「E:\scripts\type_error.py」の 1行目でエラーが発生しました。
    "123" + 456
文字列に 整数(int型)を結合することはできません。
```


