using LibCloud.Storage
storage = StorageDriver(region, aws_key, aws_secret)
bucket = get_container(storage, bucketname)
upload_object_via_stream(container, "a test string", "cloudfile")
ERROR: PyError (:PyObject_Call) <type 'exceptions.AttributeError'>
AttributeError("'str' object has no attribute 'next'",)
I would like to be able to pass some data in memory (in this case “a test string”) in a way over which Python would be happy to iterate. I get the impression I may misunderstand what type of object Python is expecting…
Well, you need to read the documentation for the Python module. Figure out what works in Python, and then translate it to the corresponding Julia code.