Download data from a jupyter server

前提是你 提交于 2020-07-20 06:48:06

问题


I'm using ipython notebook by connecting to a server I don't know how to download a thing (data frame, .csv file,... for example) programatically to my local computer. Because I can't specific declare the path like C://user//... It will be downloaded to their machine not mine


回答1:


If you are using Jupyter notebook, you can go to the "File" tab on the top left part of the notebook and click "Open". It shows you the content of the current directory. You can select your data file with different format (CSV, text, etc) and then you can download it in your local computer.

Open tab in Jupyter notebook

Download your desired file




回答2:


Run this in separate cell in one of the notebooks:

!tar cvfz zipname.tar.gz *

To cover more folders up the tree, write ../ before the * for every step up the directory.

tar cvfz zipname.tar.gz ../../*

The file zipname.tar.gz will be saved in the same folder as your notebook.

Also if files size is too large execute the following in same notebook block

!split -b 200m allfiles.tar.gz allfiles.tar.gz.part

Alternatively you can use this extension https://github.com/data-8/nbzip




回答3:


Based on another answer, the following function will export a pandas data frame to a csv file and it will provide you with a link to download the csv file in your browser:

def csv_download_link(df, csv_file_name, delete_prompt=True):
    """Display a download link to load a data frame as csv from within a Jupyter notebook"""
    df.to_csv(csv_file_name, index=False)
    from IPython.display import FileLink
    display(FileLink(csv_file_name))
    if delete_prompt:
        a = input('Press enter to delete the file after you have downloaded it.')
        import os
        os.remove(csv_file_name)

To get a link to a csv file, enter the above function and the code below in a jupyter notebook cell :

csv_download_link(df, 'df.csv')

By default the argument delete_prompt=True makes sure that once you have downloaded the csv file, it gets deleted so the file doesn't pollute the git repository where you naturally archive your notebooks.




回答4:


The download option did not appear for me.

The solution was to open the file (which could not be correctly read as it was a binary file), and to download it from the notebook's notepad.



来源:https://stackoverflow.com/questions/41627247/download-data-from-a-jupyter-server

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!