Metadata-Version: 2.1
Name: file-modes
Version: 1.0.0
Summary: File modes
Home-page: https://www.beyonce.com
Author: hunterg
Author-email: redissuslolol@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown


# file_modes
##### *Provides File Modes Constants*

### Instillation
    python -m pip install filemodes

### Usage
    Constants for file modes and opening files

### Features
r:
* READ - For reading encoded text
* READPS - For reading & writing encoded text
* READB - For reading binary
* READBPS - For reading & writing binary

w:
* WRITE - For writing encoded text
* WRITEPS - For writing & reading encoded text
* WRITEB - For writing binary
* WRITEBPS - For writing & reading binary

a:
* APPEND - For appending encoded text
* APPENDPS - For appending & reading encoded text
* APPENDB - For appending binary
* APPENDBPS - For appending & reading binary

