Metadata-Version: 2.1
Name: ExtendedIO
Version: 1.0.0
Summary: Extended I/O handling functionality for binary data
Home-page: https://gitlab.com/Nitr4m12/extendedio
Author: Nitram
License: UNKNOWN
Project-URL: Bug Tracker, https://gitlab.com/Nitr4m12/extendedio/-/issues
Project-URL: Documentation, https://gitlab.com/Nitr4m12/extendedio/-/wikis/home
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Extended IO
Extended IO is module designed to extend the i/o handling of binary files in python.

## Documentation
Please check the [wiki](https://gitlab.com/Nitr4m12/extendedio/-/wikis/home) for documentation.

## Example Usage
```
>>> from extendedio import Reader
>>> reader = Reader(b"\x48\x49\x21")
>>> reader.read_string(3)
"HI!"

>>> from extendedio import Writer
>>> writer = Writer(bytes(), "little")
>>> writer.writef("3s", b"\x48\x49\x21")
>>> writer.getvalue()
b'HI!'

```


