Metadata-Version: 2.1
Name: clastline
Version: 2.1.0
Home-page: http://github.com/csm10495/clastline
Author: csm10495
Author-email: csm10495@gmail.com
License: MIT License
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# cLastLine

Module to easily allow rewriting the last line in the terminal.

# Example

```
from clastline import cLastLine

with cLastLine() as c:
    # write testing to the last line
    c.write("testing")

    # write testing again to the last line (overwrites previous)
    c.write("testing again")

    # overwrite the first characters of the line (though leave rest)
    c.write("ouch!", clearBeforeWrite=False)
```

# Install
```
pip install clastline
```
