forked from pandas-dev/pandas
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.py
25 lines (20 loc) · 809 Bytes
/
package.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
"""
Benchmarks for pandas at the package-level.
"""
import subprocess
import sys
from pandas.compat import PY37
class TimeImport:
def time_import(self):
if PY37:
# on py37+ we the "-X importtime" usage gives us a more precise
# measurement of the import time we actually care about,
# without the subprocess or interpreter overhead
cmd = [sys.executable, "-X", "importtime", "-c", "import pandas as pd"]
p = subprocess.run(cmd, stderr=subprocess.PIPE)
line = p.stderr.splitlines()[-1]
field = line.split(b"|")[-2].strip()
total = int(field) # microseconds
return total
cmd = [sys.executable, "-c", "import pandas as pd"]
subprocess.run(cmd, stderr=subprocess.PIPE)