Metadata-Version: 2.1
Name: lessline
Version: 0.1.0
Summary: Less line to read&write text file
Home-page: https://github.com/StudyExchange/LessLine.git
Author: StudyExchange
Author-email: StudyExchange@163.com
License: MIT
Project-URL: Changelog, https://github.com/StudyExchange/LessLine.git/blob/master/CHANGELOG.md
Project-URL: Source, https://github.com/StudyExchange/LessLine.git
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# LessLine
Less line to read&write text file

## Requirements
- Python >= 3.6

## Installation
```shell
$ pip install lessline
```

## Example
```python
from lessline.text_file import read, write

file = 'demo.txt'
text = 'Hello word!\nThis is lessline!'
write(text, file)

text_new = read(file)
print(len(text_new), text_new)
```


## 0.1.0 (2022-10-22)
- Implement read&write text file


