Can you save a graph to s3 without saving the file locally first?
from boto.s3.connection import S3Connection
from boto.s3.key import Key
k = Key(bucket)
k.key = "mykey"
plt.savefig(k.key) //??
Can you save a graph to s3 without saving the file locally first?
from boto.s3.connection import S3Connection
from boto.s3.key import Key
k = Key(bucket)
k.key = "mykey"
plt.savefig(k.key) //??