加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
读取存储中文件1.py 735 Bytes
一键复制 编辑 原始数据 按行查看 历史
66666 提交于 2022-06-02 04:20 . Initial commit
import os
'''
This hacks the python built-in function "open" which add some pre-processing for file operations
to allows the program runs locally and in the Agit environment without modifications.
'''
if 'CLOUD_PROVIDER' in os.environ and os.environ['CLOUD_PROVIDER'] == 'Agit':
from agit import open # override the open function
dataset_path = 'agit://' # data path in the Agit cloud environment
else:
dataset_path = './dataset/' # data path for local running
'''
Agit Datasets only allow read-only mode, the default mode "r" (open for reading text, synonym of "rt")
and "rb " (open for reading binary) are available.
'''
with open(dataset_path + 'datafile.txt', mode='rb', encoding=None) as file:
print(file.read())
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化