-
Notifications
You must be signed in to change notification settings - Fork 32
added method to open Jupyter #14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -64,10 +64,14 @@ def destroy(): | |
| print(response.text) | ||
|
|
||
| def getFilesList(): | ||
| import requests | ||
| url = "http://127.0.0.1:5000/getFilesList/test" | ||
| response = requests.request("POST", url) | ||
| print(response.text) | ||
| print(response.text) | ||
|
|
||
| def openJupyterLa(): | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. typo. Also, replace with "openJupyter" |
||
| url = "http://127.0.0.1:5000/openJupyterLab" | ||
| response = requests.request("POST", url) | ||
| print(response.text) | ||
|
|
||
|
|
||
| # upload() | ||
|
|
@@ -77,4 +81,5 @@ def getFilesList(): | |
| # debug() | ||
| # destroy() | ||
| getFilesList() | ||
| # openJupyterLa() | ||
|
|
||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. openJupyter
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also, pay attention to typos, even if the code works. Codes with typos are hard to maintain. |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
replace with "openJupyter"
(remove the Lab.)