How to Copy Files from Azure Blob Storage to Wasabi Using Python in Azure Functions?

0
14
Asked By SunnyDaze99 On

I need some guidance on how to copy a file from Azure Blob Storage to Wasabi (which is compatible with Amazon S3) using a Python script within an Azure Function App. Any help would be appreciated!

3 Answers

Answered By LogicMaster56 On

Honestly, while tools like Copilot and Claude can help, they aren't perfect. You might run into limitations with their guidance. Have you checked if Azure Data Factory's copy activity can accommodate this task? Though, I heard that Wasabi as a sink isn't supported yet.

Answered By CodeCrafter21 On

To tackle this, I suggest first trying the process on your local machine with tools like GitHub Copilot or Claude Code to iron out the details. Once you understand the basics, create a simple Azure Function that just outputs "Hello World" so you can get a feel for how Azure Functions work. Then, you can combine your learnings to set up the file copy from Azure Blob to Wasabi.

Answered By TechSavvy24 On

Actually, if you want to get right into it, you could just create an Azure Function directly in the Azure portal and write your script there. Use an HTTP trigger to run it. I did this, but even though it returns a 200 OK status, the file hasn't been written yet, which is super frustrating.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.