My use case is very simple, I'm fetching raw JSON response form my REST API and keeping it as dictionary in python, i have to write this data into google cloud storage. is there any approach other than "upload_from_string" option ?
How to write raw json data [as pyhon Dictionary] to Google cloud storage using python?
3k Views Asked by MJ029 At
2
There are 2 best solutions below
0

For uploading data to Cloud Storage, you have only 3 methods in Python blobs object:
- Blob.upload_from_file()
- Blob.upload_from_filename()
- Blob.upload_from_string()
From dict, it's up to you to choose to convert it into a string and use upload_from_string
method. Or you can also store it locally, in the /tmp
directory (in memory file system), and then use file
purpose methods.
You maybe have more capabilities with files, if you want to zip the content and/or use dedicated library that dump a dict into a file.
I have a similar use case. I want to throw some data, which is in a dictionary format into a google cloud storage bucket.
I'm assuming you already have created a bucket(it is a simple task if you are trying to do it programmatically).
this approach will work with any data which you can pose as a string. if you want to directly upload a file from your local filesystem, use upload_from_filename() instead.
Hope this helps!!