jupyter / nbviewer

nbconvert as a web service: Render Jupyter Notebooks as static web pages
https://nbviewer.jupyter.org
Other
2.22k stars 551 forks source link

Support viewing notebooks hosted in Visual Studio Team Services #763

Open gogowings opened 6 years ago

gogowings commented 6 years ago

I want to ask for the support to render notebook hosted in Visual Studio Team Services (VSTS). There are REST API support via VSTS to read notebook raw content. I plan to write a provider for VSTS and doing the prototype right now.

Any suggestions and feedback for this enhancement request?

parente commented 6 years ago

Hi @gogowings. As long as adding VSTS doesn't somehow interfere with the other provides or the running of the public nbviewer instance, it sure feels like fair game to me.

dazzag24 commented 6 years ago

@gogowings Have you made any progress on this. I can see this being useful

zyzhu commented 6 years ago

I would love to see this feature coming so that our internal F# and Python notebooks can be viewed and shared easily on VSTS.

sonnehansen commented 6 years ago

It would be cool and allow us data scientists within my team to share explorative work easily and transparently.

gogowings commented 6 years ago

One challenge about enabling the VSTS provider is VSTS source control requires auth. There's no "public repo" by design. I want to go with the approach of specifying access token as part of environment variable. That means you will have to deploy a new env or update env variable if you want to access another VSTS repo.

Let me know what your thoughts on that approach @parente and others. I have a working prototype and will submit a PR if we can agree on that.