Я пошел и создал представление в моем проекте Python, которое отвечает на строку в URL.Так что используя alamofire .. вам нужно запрашивать строку, а не responseJSON
Alamofire.request("http://127.0.0.1:8000/stringResponse/", method: .get).responseString { (response) in
switch response.result {
case .success(let responseString):
if let imageData = Data(base64Encoded: responseString),
let image = UIImage(data: imageData) {
print("image")
}
case .failure(let error):
print("\(error.localizedDescription)")
}
}