Metadata-Version: 2.1
Name: read
Version: 0.0.1
Summary: Read files faster
Home-page: https://gitee.com/yanhuihang/read
Author: YAN Hui Hang, GDUFS
Author-email: yanhuihang@126.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

Read files faster.

```python
from read import read

s = read('foo.txt')
```

Source:

```python
def read(filename):
	with open(filename, encoding='utf-8') as f:
		return f.read()
```

