I want to get audio tags from an audio file. For that, I use eyed3 plugin.
import eyed3
mp3_file = "The_File_Path"
audiofile = eyed3.load(mp3_file)
year = audiofile.tag.getBestDate()
But I have only the amazon s3 URL of the audio file. How can I get the file object from the s3 URL?