“Lea el archivo Pickle Python” Código de respuesta

Pickle A Dictionary

import pickle #credits to stack overflow user= blender

a = {'hello': 'world'}

with open('filename.pkl', 'wb') as handle:
    pickle.dump(a, handle, protocol=pickle.HIGHEST_PROTOCOL)

with open('filename.pkl', 'rb') as handle:
    b = pickle.load(handle)

print (a == b)
Shiny Snail

Leer el archivo de Pickle

with open('filename', 'rb') as f:
    x = pickle.load(f)
Wrong Wallaby

Crear archivo de pickle python

import pickle
file_name='my_file.pkl'
f = open(file_name,'wb')
pickle.dump(my_data,f)
f.close()
Tremendous Enceladus

Lea el archivo Pickle Python

data = pd.read_pickle('dtm.pkl')
Distinct Dragonfly

Archivo Python Open Pickle

'''3 ways to open file with python (e.g: 'my_pickle_file.pkl)':'''

# ORIGINAL
with open('my_pickle_file.pickle', 'rb') as f :
    pickle_file = pickle.load(f)

# QUICK
pickle_file =  pickle.load(open("my_pickle_file.pickle", 'rb'))

# PANDAS
pickle_file = pd.read_pickle('my_pickle_file.pickle')
Tirbo06

Lea el archivo Pickle Python

import pandas as pd
#the object type is the one defined in the pickle, it is not a dataframe
object = pd.read_pickle(r'filepath')
Yesid Cano Castro

Respuestas similares a “Lea el archivo Pickle Python”

Preguntas similares a “Lea el archivo Pickle Python”

Más respuestas relacionadas con “Lea el archivo Pickle Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código