Reading and writing size rotate file.
Project description
# os-rotatefile
[](https://www.travis-ci.org/cfhamlet/os-rotatefile)
[](https://codecov.io/gh/cfhamlet/os-rotatefile)
[](https://pypi.python.org/pypi/os-rotatefile)
[](https://pypi.python.org/pypi/os-rotatefile)
Read and write size rotate file.
# Install
`pip install os-rotatefile`
# Usage
* Write
```
from os_roatefile import open_file
f = open_file('file', 'w', roll_size='1G')
f.write('Your data')
f.close()
```
* Read
```
from os_roatefile import open_file
f = open_file('file', 'r', buffer_size='128K')
f.readline()
f.read(100)
if not f.read():
f.close()
```
# Unit Tests
`$ tox`
# License
MIT licensed.
[](https://www.travis-ci.org/cfhamlet/os-rotatefile)
[](https://codecov.io/gh/cfhamlet/os-rotatefile)
[](https://pypi.python.org/pypi/os-rotatefile)
[](https://pypi.python.org/pypi/os-rotatefile)
Read and write size rotate file.
# Install
`pip install os-rotatefile`
# Usage
* Write
```
from os_roatefile import open_file
f = open_file('file', 'w', roll_size='1G')
f.write('Your data')
f.close()
```
* Read
```
from os_roatefile import open_file
f = open_file('file', 'r', buffer_size='128K')
f.readline()
f.read(100)
if not f.read():
f.close()
```
# Unit Tests
`$ tox`
# License
MIT licensed.