'tempfile' module Flashcards

1
Q

tempFile = tempfile.TemporaryFile()

A

create an instance of a temporary file

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

tempFile.write(b”string”)

A

write binary literal to a temp file

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

tempFile.seek(0)

A

reset seek pointer to position 0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

tempFile.read()

A

read temp file

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

tempFile.close()

A

close temp file

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

zip {.zip-filename} {filename-to-compress}

A

create a zip archive with compressed files

How well did you know this?
1
Not at all
2
3
4
5
Perfectly