def ObtenerCancionID(): global ArregloCanciones, cont_canciones Datos=[] for cancion in ArregloCanciones: Dato={ 'id':cancion.getId(), 'spotify':cancion.getSpotify(), } Datos.append(Dato) respuesta=jsonify(Datos) return (respuesta)
def ObtenerCancion(): global ArregloCanciones, cont_canciones Datos=[] for cancion in ArregloCanciones: Dato={ 'cancion':cancion.getCancion(), 'artista':cancion.getArtista(), 'album':cancion.getAlbum(), 'fecha':cancion.getFecha(), 'imagen':cancion.getImagen(), 'spotify':cancion.getSpotify(), 'youtube':cancion.getYoutube() } Datos.append(Dato) respuesta=jsonify(Datos) return (respuesta)