Metadata-Version: 2.1
Name: python-io-wrapper
Version: 0.3.1
Summary: IO wrapper to add missing methods from io.BaseIO
Home-page: UNKNOWN
Author: David Megginson
Author-email: contact@megginson.io
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown

python-io-wrapper
=================

Early version of a Python 3 wrapper for a file-like object. Currently
supports only raw (binary) objects, but text will come soon. Implement
any missing methods from io.RawIOBase.

# Usage

```
from io_wrapper import RawIOWrapper

...

new_stream = RawIOWrapper(my_file_like_object)
```

## License

This package is in the Public Domain. See UNLICENSE.md for details.

