Metadata-Version: 2.4
Name: nextline
Version: 0.8.0
Summary: Execute Python scripts under control with callbacks
Project-URL: Homepage, https://github.com/nextline-dev/nextline#readme
Project-URL: Issues, https://github.com/nextline-dev/nextline/issues
Project-URL: Source, https://github.com/nextline-dev/nextline
Author: Tai Sakuma
License-Expression: MIT
License-File: LICENSE
Keywords: callbacks,nextline,trace
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.10
Requires-Dist: apluggy>=1.0
Requires-Dist: exceptiongroup>=1.2
Requires-Dist: transitions>=0.9.0
Description-Content-Type: text/markdown

# Nextline

[![PyPI - Version](https://img.shields.io/pypi/v/nextline.svg)](https://pypi.org/project/nextline)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/nextline.svg)](https://pypi.org/project/nextline)


[![Test Status](https://github.com/nextline-dev/nextline/actions/workflows/unit-test.yml/badge.svg)](https://github.com/nextline-dev/nextline/actions/workflows/unit-test.yml)
[![Test Status](https://github.com/nextline-dev/nextline/actions/workflows/type-check.yml/badge.svg)](https://github.com/nextline-dev/nextline/actions/workflows/type-check.yml)
[![codecov](https://codecov.io/gh/nextline-dev/nextline/branch/main/graph/badge.svg)](https://codecov.io/gh/nextline-dev/nextline)

**Note on codecov coverage**: The codecov coverage shown in the badge above is underestimated
because _nextline_ uses the [trace function](https://docs.python.org/3/library/sys.html#sys.settrace). The real coverage is much higher than what
codecov reports.

---

This library executes Python scripts under control with trace functions. It
calls callback functions at various events during the execution of the scripts.
