Metadata-Version: 2.1
Name: jupyterexcel
Version: 0.0.1
Summary: A Jupyter extensions to make notebooks web api for Excel to call
Home-page: https://github.com/luozhijian/jupyterexcel
Author: Jim Luo
Author-email: luozhijian@gmail.com
License: UNKNOWN
Description: # jupyterexcel Package
        
        This is a package to make Jupyter .ipynb file a web api with json result. 
        SourceCode in  [JupyterExcel](https://github.com/luozhijian/jupyterexcel)
        
        This web api can be connected with Excel addin which call this web api. Excel formula will generate a web api url and thorugh winhttp to get json result.
        
        ## server setting
        
        Please config [jupyter server](https://jupyter-notebook.readthedocs.io/en/stable/public_server.html) like the following:
        
        c.NotebookApp.nbserver_extensions = {'jupyterexcel': True}
        c.NotebookApp.token = 'ABCD'   #it is good to use token mode for web api call to pass through
        
        ## Example
        The following screenshot shows the sample notebook file with a function sum 
        http://localhost:8888/Excel/TestingJupyter.ipynb?token=ABCD&functionname=sum&1=11&2=8&3=6
        [NotebookExample](NotebookExample.png)
         
        
        The following screenshot shows how excel works
        [Jupyter Excel](ExcelFormulaScreen.png)
        
        
        ## Reference 
        Load lots from [appmode](https://github.com/oschuett/appmode)
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
