We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 772ecb8 commit c9a6c5bCopy full SHA for c9a6c5b
dublintraceroute/tracerouteresults.py
@@ -1,4 +1,3 @@
1
-import pandas
2
import tabulate
3
4
@@ -44,6 +43,11 @@ def flatten(self):
44
43
return rows
45
46
def to_dataframe(self):
+ '''
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
51
return pandas.DataFrame(self.flatten())
52
53
def pretty_print(self):
requirements.txt
@@ -1,4 +1,2 @@
pygraphviz
tabulate
-numpy
-pandas
0 commit comments