generated from caltechlibrary/py-cli-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtestpickle.py
executable file
·38 lines (27 loc) · 921 Bytes
/
testpickle.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python3
import gzip
import pickle
from commonpy.data_structures import CaseFoldSet
from timeit import timeit
def read_from_file():
orgs = CaseFoldSet()
with open('github-orgs.txt', 'r') as f:
for line in f.readlines():
orgs.add(line)
return orgs
def make_pickle():
orgs = CaseFoldSet()
with open('github-orgs.txt', 'r') as f:
for line in f.readlines():
orgs.add(line)
with open('pickle.p', 'wb') as f:
pickle.dump(orgs, f)
def read_from_pickle():
with open('pickle.p', 'rb') as f:
return pickle.load(f)
def read_from_gzipped_pickle():
with gzip.open('pickle.p.gz', 'rb') as pickle_file:
return pickle.load(pickle_file)
print('file = ', timeit(read_from_file, number=10))
print('pickle = ', timeit(read_from_pickle, number=10))
print('gzipped pickle = ', timeit(read_from_gzipped_pickle, number=10))