Can a Jupyter / IPython notebook take arguments in the URL?

后端 未结 2 1711
我在风中等你
我在风中等你 2020-12-14 21:51

Is it possible to write an Jupyter notebook such that parameters can be passed in via the URL of the notebook?

Example, for a URL such as this:

http:         


        
2条回答
  •  情书的邮戳
    2020-12-14 22:14

    You need to find out the URL using JavaScript and pass it to the IPython kernel:

    from IPython.display import HTML
    HTML('''
        ''')
    

    or:

    %%javascript
    IPython.notebook.kernel.execute("URL = '" + window.location + "'");
    

    Then in the next cell:

    print(URL)
    

    After this you can use the tools in the standard library (or plain string operations) to pull out the query parameters.

提交回复
热议问题