阿里云随笔(8)
Posted 麦好
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了阿里云随笔(8)相关的知识,希望对你有一定的参考价值。
将文件写入阿里云oss的操作
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
"""
Created on Sat Sep 15 10:54:53 2018
@author: myhaspl
@email:myhaspl@myhaspl.com
阿里云写文件入oss
oss://myhaspl-ai.oss-cn-beijing-internal.aliyuncs.com/
"""
import tensorflow as tf
with tf.Session() as sess:
with tf.gfile.GFile("oss://myhaspl-ai.oss-cn-beijing-internal.aliyuncs.com/ai_log.txt","wb") as f:
f.write("dadsfddasf")
以上是关于阿里云随笔(8)的主要内容,如果未能解决你的问题,请参考以下文章