Metadata-Version: 2.1
Name: byteify
Version: 2
Summary: Turns files into bytes, useful for specific uses
Author: bagoflays
Description-Content-Type: text/markdown

 # Byteify
- This turns files into bytes or filestreams.
- Example code:
```python
import byteify
print(byteify.return_bytes("filename")) # this returns bytes, made for file specific tasks
print(byteify.return_filestream("filename")) # this returns a file object, with the file name, metadata and content on it. like opening a file
```
To install,
```bash
pip install byteify
```
