On 19-08-2014 16:17, Aline Manera wrote:
We can use "url" for download and "file" for
upload.
What if both parameters are provided?
if "url" in params.keys():
self.download()
elif "file" in params.keys():
self.upload()
According to this code, the parameter 'url' overrides 'file'. Should we
consider that behavior?