/
Strings and Serialization Strings and Serialization

Strings and Serialization - PowerPoint Presentation

cheryl-pisano
cheryl-pisano . @cheryl-pisano
Follow
386 views
Uploaded On 2017-12-30

Strings and Serialization - PPT Presentation

Damian Gordon Serializing Objects Strings and Serialization We have seen already that if you want to store information on a permanent basis you can write it to a file We can do the same thing with an object ie storing it to a file and retrieving it from storage ID: 618626

strings object pickle serialization object strings serialization pickle myfile list file json pickled open load dump objects import method myobject bytes serializing

Share:

Link:

Embed:

Download Presentation from below link

Download Presentation The PPT/PDF document "Strings and Serialization" is the property of its rightful owner. Permission is granted to download and print the materials on this web site for personal, non-commercial use only, and to display it on your personal computer provided you do not modify the materials and that you retain all copyright notices contained in the materials. By downloading content from our website, you accept the terms of this agreement.


Presentation Transcript

Slide1

Strings and Serialization

Damian GordonSlide2

Serializing ObjectsSlide3

Strings and Serialization

We have seen already that if you want to store information on a permanent basis you can write it to a file.

We can do the same thing with an object, i.e. storing it to a file, and retrieving it from storage.

Storing an object is called

serializing

it, and retrieving it is called

deserializing

it.Slide4

Strings and Serialization

Python uses a function called

p

ickle

to do this

S

o sometimes instead of saying we are serializing an object, we can say we are pickling an object; and instead of deserializing an object, we can say we are unpickling an object.Slide5

Strings and Serialization

pickle

provides a

dump

method to save an object to a file-like blob of memory.

The syntax is as follows:

pickle.dump

(object, file)Slide6

Strings and Serialization

So for example we could say:

open

("

pickled_list.p

",

"

wb

"

)

as

MyFile

:

pickle.dump(MyObject, MyFile) So we open a byte file ("pickled_list.p") for writing, as MyFile, and serialize that object into MyFile. Slide7

Strings and Serialization

pickle

provides a

load

method to take a file-like blob of memory and load it into an object.

The syntax is as follows:

object =

pickle.load

(file)Slide8

Strings and Serialization

So for example we could say:

open

("

pickled_list.p

", "

rb

") as

MyFile

:

MyNewObject

=

pickle.load(MyFile)So we open the byte file ("pickled_list.p") for reading, as MyFile, and load it into the object. Slide9

Strings and Serialization

Here’s the code:

import

pickle

MyObject

= ["a list", "containing", 5

, "

values including another list

", ["

inner", "list"]]

with open("

pickled_list.p

", "

wb") as MyFile: pickle.dump(MyObject, MyFile)

with open("

pickled_list.p

", "

rb

") as

MyFile

:

MyNewObject

=

pickle.load

(

MyFile

)

Slide10

Strings and Serialization

Here’s the code:

import

pickle

MyObject

= ["a list", "containing", 5

, "

values including another list

", ["

inner", "list"]]

with open("

pickled_list.p

", "

wb") as MyFile: pickle.dump(MyObject, MyFile)

with open("

pickled_list.p

", "

rb

") as

MyFile

:

MyNewObject

=

pickle.load

(MyFile)

We have to import the pickle function into the program

Using the

with

statement the file is automatically closedSlide11

Strings and Serialization

There is also the

dumps

and

loads

methods.They

behave much like their file-like counterparts,

except they

return or accept bytes instead of file-like objects.

The

dumps

method requires only one argument, the object to be stored, and it returns a serialized bytes object.The loads method requires a bytes object and returns the restored object.Slide12

Serializing Web ObjectsSlide13

Strings and Serialization

To transmit object data over the web you need to use a recognised standard so that the sending and receiving classes will know what is being transmitted.

There are many common standards; XML, YAML, and CSV.

But the most common one is JSON.Slide14

Strings and Serialization

JSON

(pronounced “

jason

”) stands for

JavaScript

Object Notation.It is an open-standard format that uses human-readable text to transmit data objects consisting of attribute–value pairs. JSON

is a language-independent data

format.

It

derives from

JavaScript.

The

JSON filename extension is .json.Slide15

Strings and Serialization

Here’s some JSON code:

{

"

firstName

": "John",

"

lastName

": "Smith",

"

age": 25,

"address": {

"streetAddress": "21 2nd Street", "city": "New York", "state": "NY", }}Slide16

Strings and Serialization

So instead of saying:

import

pickle

We say:

import

jsonSlide17

Strings and Serialization

JSON

provides a

similar interface

to the

pickle function, with dump,

load

,

dumps

, and

loads

functions.

The default calls to these functions are nearly identical to those in pickle, so there’s no need to repeat the details. Slide18

Strings and Serialization

There

are a couple differences; obviously, the output of these

calls is

valid JSON notation, rather than a pickled object.

In

addition, the json functions operate on str objects, rather than bytes. Therefore, when dumping to or

loading from

a file, we need to create text files rather than binary ones.Slide19

etc.