예제 #1
0
파일: generic.py 프로젝트: achernet/pandas
    def to_clipboard(self):
        """
        Attempt to write text representation of object to the system clipboard

        Notes
        -----
        Requirements for your platform
          - Linux: xclip, or xsel (with gtk or PyQt4 modules)
          - Windows:
          - OS X:
        """
        from pandas.io import clipboard
        clipboard.to_clipboard(self)
예제 #2
0
    def to_clipboard(self):
        """
        Attempt to write text representation of object to the system clipboard

        Notes
        -----
        Requirements for your platform
          - Linux: xclip, or xsel (with gtk or PyQt4 modules)
          - Windows:
          - OS X:
        """
        from pandas.io import clipboard
        clipboard.to_clipboard(self)
예제 #3
0
def copy(s):
    to_clipboard(s)
예제 #4
0
파일: generic.py 프로젝트: kalekseev/pandas
    def to_clipboard(self):
        from pandas.io import clipboard

        clipboard.to_clipboard(self)