We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9713e45 commit 044daaeCopy full SHA for 044daae
pandas/io/clipboard.py
@@ -1,4 +1,5 @@
1
""" io on the clipboard """
2
+from StringIO import StringIO
3
4
def read_clipboard(**kwargs): # pragma: no cover
5
"""
@@ -10,6 +11,7 @@ def read_clipboard(**kwargs): # pragma: no cover
10
11
parsed : DataFrame
12
13
from pandas.util.clipboard import clipboard_get
14
+ from pandas.io.parsers import table
15
text = clipboard_get()
16
return read_table(StringIO(text), **kwargs)
17
0 commit comments