Tutorial 14- Python Pickling And Unpickling In Hindi

preview_player
Показать описание
The pickle module implements binary protocols for serializing and de-serializing a Python object structure. “Pickling” is the process whereby a Python object hierarchy is converted into a byte stream, and “unpickling” is the inverse operation, whereby a byte stream (from a binary file or bytes-like object) is converted back into an object hierarchy. Pickling (and unpickling) is alternatively known as “serialization”, “marshalling,” 1 or “flattening”; however, to avoid confusion, the terms used here are “pickling” and “unpickling”.
----------------------------------------------------------------------------------------------------------------
Please donate if you want to support the channel through GPay UPID,
-----------------------------------------------------------------------------------------------------------------------
Recording Gears That I Use
---------------------------------------------------------------------------------------------------------------------------
#krish #pythonbusted
Connect with me here:
Рекомендации по теме
Комментарии
Автор

Aap bohot accha padhate hai .. really great 👍 .

tapanpal
Автор

Thanks a lot sir! Helped me understand how it works a lot!
By the way is that a Mercedes AMG Petronas F1 team jacket?? haha

Pamir
Автор

Pickle is the process of serializing a Python object into a byte stream, while unpickling is the process of deserializing the byte stream back into the original object.

shreyjoshi
Автор

what if pickle file size is large. I tried to use bz2 library but it cuase problem in deployment

sonal
Автор

Keep it up Krish. U are my goto person for every concept. Ur videos are short still covers everything around the topic, enables practical implementation with concept clarity. This hindi initiative is brilliant. Thanks for being around, making it easier for learners.

kateki
Автор

UnpicklingError: invalid load key, '\x00'.error is coming while upickiling

mamawapata
Автор

The process of converting a Python object into a byte stream to store it in a file/database, maintain program state across sessions, or transport data over the network

writeruby