AI-powered search & chat for Data / Computer Science Students

Learn more with these recommended learning resources

Serialize Your Data With Python

 Real Python

In this in-depth tutorial, you'll explore the world of data serialization in Python. You'll compare and use different data serialization formats, serialize Python objects and executable code, and hand...

Read more at Real Python

Serializing Python Objects

 Dive into Python 3

On the surface, the concept of serialization is simple. You have a data structure in memory that you want to save, reuse, or send to someone else. How would you do that? Well, that depends on how you ...

Read more at Dive into Python 3

— Python object serialization

 The Python Standard Library

pickle — Python object serialization Source code: Lib/pickle.py The pickle module implements binary protocols for serializing and de-serializing a Python object structure. “Pickling” is the process w...

Read more at The Python Standard Library

A Gentle Introduction to Serialization for Python

 Machine Learning Mastery

Last Updated on June 7, 2022 Serialization refers to the process of converting a data object (e.g., Python objects, Tensorflow models) into a format that allows us to store or transmit the data and th...

Read more at Machine Learning Mastery

What, Why and How of (De)Serialization in Python

 Towards Data Science

The first time I heard about the word serialization and deserialization, I had no idea what they mean and felt these terms quite “intimidating”. After a few days, I started to pick up this concept…

Read more at Towards Data Science

— Internal Python object serialization

 The Python Standard Library

marshal — Internal Python object serialization This module contains functions that can read and write Python values in a binary format. The format is specific to Python, but independent of machine ar...

Read more at The Python Standard Library

Data Serialization

 The Hitchhiker's Guide to Python!

Data Serialization What is data serialization? Data serialization is the process of converting structured data to a format that allows sharing or storage of the data in a form that allows recovery of ...

Read more at The Hitchhiker's Guide to Python!

Python 101: An Intro to Object Serialization with Pickle

 Mouse Vs Python

Python's "batteries included" philosophy even includes a module for object serialization. They call it the pickle module. Some people call serialization by other names, such as marshalling or flatteni...

Read more at Mouse Vs Python

Up Your Coding Skills With Python: Pickle Serialization

 Python in Plain English

The Pickle module and its usage in our Python projects Continue reading on Python in Plain English

Read more at Python in Plain English

Serializing Data With Python & Underscore Naming Conventions | Real Python Podcast #187

 Real Python

Do you need to transfer an extensive data collection for a science project? What's the best way to send executable code over the wire for distributed processing? What are the different ways to seriali...

Read more at Real Python

Ethereum — Playing with Python web3 library and eth serialization Ethereum

 Level Up Coding

In this article, we will learn how to install Python on your Ubuntu machine, install the web3 library and connect to the Ethereum network. This article assumes that you have already the following…

Read more at Level Up Coding

Serialize me if you can: Python function references

 Level Up Coding

Photo by Markus Spiske on Unsplash Marketing Technologies Serialize Me If You Can: Python Function References Intro to serialization Serialization is one of the basic concepts in computer science. It ...

Read more at Level Up Coding

Python Pickle: Serialize Your Objects [With Examples] — Codefather

 Python in Plain English

If you want to serialize and deserialize Python objects you might have considered using the Python Pickle module. The Python Pickle module allows to serialize and deserialize a Python object…

Read more at Python in Plain English

Serialization

 Codecademy

Serialization is the process of translating a complex object into a format, typically a string of characters, that can be deserialized back into a copy of the original object. This is beneficial as it...

Read more at Codecademy

Serializing and De-Serializing Python Objects with Pickle

 Analytics Vidhya

The pickle module provided by python implements binary protocols for serializing and de-serializing Python object structure. In this article, we will be covering dictionaries.

Read more at Analytics Vidhya

The Real Python Podcast – Episode #187: Serializing Data With Python & Underscore Naming Conventions

 Real Python

Do you need to transfer an extensive data collection for a science project? What's the best way to send executable code over the wire for distributed processing? What are the different ways to seriali...

Read more at Real Python

Serialization and saving

 TensorFlow Guide

Complete guide to saving & serializing models.

Read more at TensorFlow Guide

The Real Python Podcast – Episode #110: Advantages of Protobuf for Serialization in Python

 Real Python

Would you like a way to send structured serialized data between different platforms and languages? What if the data was self-documenting, could automatically generate Python code, and would validate i...

Read more at Real Python

Master Python Serialization with JSON and Pickle: A Comprehensive Guide

 Python in Plain English

Learn the Basics of Data Persistence in Python Continue reading on Python in Plain English

Read more at Python in Plain English

Python Pickle Power: Mastering Python’s Object Serialization and Deserialization Technique

 Python in Plain English

Python Pickle is a module that implements binary protocols for serializing and de-serializing a Python object structure. It is used to convert Python objects into a byte stream, which can be stored or...

Read more at Python in Plain English

Serializing Django objects

 Django documentation

Django’s serialization framework provides a mechanism for “translating” Django models into other formats. Usually these other formats will be text-based and used for sending Django data over a wire, b...

Read more at Django documentation

Serialization

 Codecademy

Serialization is the process of converting a complex object to a format that can be transferred over a network, used by an application, or stored in a database or file. In Kotlin, serialization tools ...

Read more at Codecademy

Serialization in Django REST Framework

 Python in Plain English

Hey, developers, today we’re going to learn how to do simple serialization and deserialization of data in the Django REST framework. We do not require much knowledge like the multi-talented brain…

Read more at Python in Plain English

How to Perform JSON Conversion, Serialization, and Comparison in Python

 Towards Data Science

Learn basic JSON operations with simple examples Continue reading on Towards Data Science

Read more at Towards Data Science