Skip to content

Commit c9a6c5b

Browse files
committed
Pandas not mandatory anymore; moved pandas import only when needed
1 parent 772ecb8 commit c9a6c5b

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

dublintraceroute/tracerouteresults.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import pandas
21
import tabulate
32

43

@@ -44,6 +43,11 @@ def flatten(self):
4443
return rows
4544

4645
def to_dataframe(self):
46+
'''
47+
Convert traceroute results to a Pandas DataFrame.
48+
'''
49+
# pandas is imported late because it does not compile yet on PyPy
50+
import pandas
4751
return pandas.DataFrame(self.flatten())
4852

4953
def pretty_print(self):

requirements.txt

-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
pygraphviz
22
tabulate
3-
numpy
4-
pandas

0 commit comments

Comments
 (0)