Metadata-Version: 2.1
Name: ctraceback
Version: 1.6
Summary: Custom traceback
Home-page: https://github.com/cumulus13/ctraceback
Author: Hadi Cahyadi LD
Author-email: cumulus13@gmail.com
Maintainer: cumulus13 Team
Maintainer-email: cumulus13@gmail.com
License: GPL
Project-URL: Documentation, https://github.com/cumulus13/ctraceback
Project-URL: Code, https://github.com/cumulus13/ctraceback
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3
Description-Content-Type: text/markdown
License-File: LICENSE.rst
Requires-Dist: pygetwindow; platform_system == "Windows"
Requires-Dist: argparse
Requires-Dist: configset
Requires-Dist: rich
Requires-Dist: pydebugger
Requires-Dist: ctype; platform_system == "Windows"
Requires-Dist: pywin32; platform_system == "Windows"
Requires-Dist: psutil

# ctraceback

Custom traceback

## Installing

Install and update using [pip](https://pip.pypa.io/en/stable/quickstart/):

$ pip install ctraceback

ctraceback supports Python 3 and newer.

## Example

```python
from ctraceback import CTraceback
sys.excepthook = CTraceback
...
try:
  ...
except:
  CTraceback(*sys.exc_info())
...
```

you can run ctraceback server to receive all traceback messages:
```bash
$ ctraceback serve
# use -h for help
```

default port is 7000 and can be change in config file `traceback.ini`

## Links

- License: [GPL](https://github.com/cumulus13/ctraceback/blob/master/LICENSE.rst)
- Code: [https://github.com/cumulus13/ctraceback](https://github.com/cumulus13/ctraceback)
- Issue tracker: [https://github.com/cumulus13/ctraceback/issues](https://github.com/cumulus13/ctraceback/issues)

## Author
[Hadi Cahyadi](mailto:cumulus13@gmail.com)

[![Buy Me a Coffee](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/cumulus13)
[![Donate via Ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/cumulus13)
 [Support me on Patreon](https://www.patreon.com/cumulus13)
