Run python program by multiuser simultaneously.

Shivaji Shinde 1 Reputation point
2021-01-12T08:32:01.427+00:00

I need help to set a python program where it can be accessed by multiusers like jupyterhub. Can azure cloud will guide me making this possible.?

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,607 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Pramod Valavala 20,611 Reputation points Microsoft Employee
    2021-01-18T06:02:37.613+00:00

    You could write these common methods and publish them as a python package for everyone to load. Since pip can load directly from git, you need not really publish the package but ensure everyone pulls it from the git repo.

    If you require not making it public, you could always host a simple git service on the same server like gitea exposed only on that server.

    Another option would be to host the required programs as an Azure Function and expose them over HTTP. You can follow this quick start to get started with Azure Functions and Python.

    0 comments No comments