我的目标是在我的Python服务器上生成某些文件(txt / pdf / excel),然后将其推送到Firebase存储。
对于Firebase Storage集成,我使用pyrebase软件包。
到目前为止,我已经设法在本地生成文件,然后将其存储在Firebase Storage数据库的正确路径上。
但是,我存储的文件始终为空。是什么原因呢?
import os
def save_templocalfile(specs):
# Random something
localFileName = "test.txt"
localFile = open(localFileName,"w+")
for i in range(1000):
localFile.write("This is line %d\r\n" % (i+1))
return {
'localFileName': localFileName,
'localFile': localFile
}
# Required Libraries
import pyrebase
import time
# Firebase Setup & Admin Auth
config = {
"apiKey": "<PARAMETER>",
"authDomain": "<PARAMETER>",
"databaseURL": "<PARAMETER>",
"projectId": "<PARAMETER>",
"storageBucket": "<PARAMETER>",
"messagingSenderId": "<PARAMETER>"
}
firebase = pyrebase.initialize_app(config)
storage = firebase.storage()
def fb_upload(localFile):
# Define childref
childRef = "/test/test.txt"
storage.child(childRef).put(localFile)
# Get the file url
fbResponse = storage.child(childRef).get_url(None)
return fbResponse
答案 0 :(得分:0)
问题是我仅以“写”权限打开了文件:
localFile = open(localFileName,"w+")
解决方案是关闭写入操作并使用读取权限打开它:
# close (Write)
localFile.close()
# Open (Read)
my_file = open(localFileName, "rb")
my_bytes = my_file.read()
# Store on FB
fbUploadObj = storage.child(storageRef).put(my_bytes)