Example #1
0
def loadlst (file):
    lst = m.loadCSVFile(file,m.compareRecordIds) 
    first=lt.firstElement(lst)
    last=lt.lastElement(lst)
    print("Datos cargados, " + str(lt.size(lst)) + " elementos cargados")
    print ("Primera película:\n"+ " "*18 + "Título: " + first["original_title"]+ "\n"+ " "*18 + 
    "Fecha de estreno: "+ first["release_date"]+"\n"+ " "*18 + "Promedio de votación: "+ first["vote_average"]+
    "\n"+ " "*18 + "Número de votos: " +first["vote_count"]+"\n"+ " "*18 + "Idioma: "+ first["original_language"])
    print ("última película:\n"+ " "*18 + "Título: " + last["original_title"]+ "\n"+ " "*18 + 
    "Fecha de estreno: "+ last["release_date"]+"\n"+ " "*18 + "Promedio de votación: "+ last["vote_average"]+
    "\n"+ " "*18 + "Número de votos: " + last["vote_count"]+"\n"+ " "*18 + "Idioma: "+ last["original_language"])
    return lst
Example #2
0
def loadCast (file):
    lst = m.loadCSVFile("themoviesdb\SmallMoviesDetailsCleaned.csv") 
    return lst
Example #3
0
def loadMoviesDetails():
    lstmoviesdetails = model.loadCSVFile("Data/AllMoviesDetailsCleaned.csv",
                                         model.compareRecordIds)
    print("Datos cargados, " + str(lt.size(lstmoviesdetails)) +
          " elementos cargados")
    return lstmoviesdetails
Example #4
0
def loadMoviesCasting():
    lstmoviescasting = model.loadCSVFile("Data/AllMoviesCastingRaw.csv",
                                         model.compareRecordIds)
    print("Datos cargados, " + str(lt.size(lstmoviescasting)) +
          " elementos cargados")
    return lstmoviescasting
Example #5
0
def loadMoviesCasting(moviescastingfile):
    listacasting = model.loadCSVFile(moviescastingfile)
    return listacasting
Example #6
0
def loadMoviesDetails (moviesdetailsfile):
    listadetails = model.loadCSVFile(moviesdetailsfile) #llamar funcion cargar datos 
    return listadetails
Example #7
0
def carga_de_datos(file1,lst,lst2,file2):
    p1= model.loadCSVFile()
    p2= model.loadCSVFile()
    return p1,p2
    
def loadCast(file):
    lst = m.loadCSVFile("themoviesdb\MoviesCastingRaw-small.csv")
    return lst
def loadCSVFile(file, tipo_lista, cmpfunction=None, sep=";"):
    lista = model.loadCSVFile(file, tipo_lista, cmpfunction=None, sep=";")
    return lista