scirisweb


Namescirisweb JSON
Version 1.0.0 PyPI version JSON
download
home_pagehttp://github.com/sciris/scirisweb
SummaryScientific webapps for Python
upload_time2023-12-14 01:26:20
maintainer
docs_urlNone
authorSciris Development Team
requires_python
license
keywords scientific webapp framework
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Welcome to ScirisWeb
====================

**NOTE:** While Sciris is still in active development, ScirisWeb is no longer actively maintained. It is still functional, but you may wish to use a more modern Python webapp framework instead, such as `Shiny for Python <https://shiny.posit.co/py>`_, `Plotly Dash <https://dash.plotly.com>`_, or `Streamlit <https://streamlit.io/>`_.

What is Sciris?
---------------

Glad you asked! **Sciris** (http://sciris.org) is a library of tools that can make it easier and more pleasant to write scientific Python code. Built on top of `NumPy <https://numpy.org/>`__ and `Matplotlib <https://matplotlib.org/>`__, Sciris provides functions covering a wide range of common array and plotting operations. This means you can get more done with less code, and spend less time looking things up on StackOverflow.

**ScirisWeb** is an extension of Sciris that allows you to build Python webapps without reinventing the wheel – kind of like `Shiny <https://shiny.rstudio.com/>`__ for Python. In contrast to `Plotly Dash <https://plotly.com/dash/>`__ and `Streamlit <https://www.streamlit.io/>`__, which have limited options for customization, ScirisWeb is completely modular, so you have control over which tools to use for which aspects of the project. Out of the box, ScirisWeb provides a "just works" solution using `Vuejs <https://vuejs.org/>`__ for the frontend, `Flask <https://flask.palletsprojects.com/>`__ as the web framework, `Redis <https://redis.io/>`__ for the (optional) database, and Matplotlib/`mpld3 <https://github.com/mpld3/mpld3>`__ for plotting. But if you want a React frontend linked to an SQL database with Plotly figures, ScirisWeb can serve as the glue holding all of that together.

ScirisWeb is available on `PyPi <https://pypi.org/project/scirisweb/>`__ (``pip install sciris``) and `GitHub <https://github.com/sciris/scirisweb>`__. Full documentation is available at http://docs.sciris.org. If you have questions, feature suggestions, or would like some help getting started, please reach out to us at info@sciris.org.


Highlights
~~~~~~~~~~
Some highlights of ScirisWeb (``import scirisweb as sw``):

-  **ScirisApp** – An extension of a Flask App that can be created as simply as ``app = sw.ScirisApp(config)`` and run with ``app.run()``.
-  **RPCs** – Simple "remote procedure calls" that define how the frontend (web interface) interacts with the backend (Python server).
-  **Datastore** – For more fully-featured webapps, user and data management are available based on Redis (with additional options for SQL or file-based databases).


Where did Sciris come from?
~~~~~~~~~~~~~~~~~~~~~~~~~~~
Development of Sciris began in 2014 to support development of the `Optima <http://optimamodel.com>`__ suite of models. We kept encountering the same issues and inconveniences over and over while building scientific webapps, and began collecting the tools we used to overcome these issues into a shared library. This library evolved into Sciris. (Note: while "Sciris" doesn't mean anything, "iris" means "rainbow" in Greek, and the name was loosely inspired by the wide spectrum of scientific computing features included in Sciris.)


Where has ScirisWeb been used?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ScirisWeb is currently used by a number of scientific computing libraries, including `Atomica <http://atomica.tools>`__ and `Covasim <http://covasim.org>`__. ScirisWeb also provides the backend for webapps such as the `Cascade Analysis Tool <http://cascade.tools>`__, `HIPtool <http://hiptool.org>`__, and `Covasim <http://app.covasim.org>`__.


Installation and run instructions
---------------------------------


5-second quick start guide
~~~~~~~~~~~~~~~~~~~~~~~~~~

1. Install ScirisWeb: ``pip install scirisweb``

2. Use ScirisWeb: ``import scirisweb as sw``


20-second quick start guide

1. Download ScirisWeb (e.g. ``git clone http://github.com/sciris/scirisweb``)

2. Install ScirisWeb (which will install Sciris as well): ``cd scirisweb; pip install -e .``

3. Change to the Hello World folder: ``cd examples/helloworld``

4. Run the app: ``python app.py``

5. Go to ``localhost:8080`` in your browser

6. Have fun!


Medium-quick start guide
~~~~~~~~~~~~~~~~~~~~~~~~

Note: if you're a developer, you'll likely already have some/all of these packages installed.

1. Install `NodeJS <https://nodejs.org/en/download/>`__ (JavaScript manager)

2. Install `Redis <https://redis.io/topics/quickstart>`__ (database)

3. Install `Anaconda Python <https://www.anaconda.com/download/>`__ (scientific Python environment)

4. Clone and install Sciris: ``git clone http://github.com/sciris/sciris``

5. Clone ScirisWeb: ``git clone http://github.com/sciris/scirisweb``

6. Once you've done all that, to install, simply run ``pip install -e .`` in the root folders of ``sciris`` and ``scirisweb``. This should install Sciris and ScirisWeb as importable Python modules.

To test, open up a new Python window and type ``import sciris`` (and/or ``import scirisweb``)

If you have problems, please email info@sciris.org, or consult the rest of this guide for more information.


Installing on Linux
~~~~~~~~~~~~~~~~~~~

The easiest way to install Sciris is by using pip: ``pip install scirisweb`` (which will also automatically install ``sciris``). If you want to install from source, follow these steps:

1. Install Git: ``sudo apt install git``

2. Install NodeJS: ``sudo apt install nodejs``

3. Install Redis: https://redis.io/topics/quickstart

4. (Optional) Install `Anaconda Python <https://www.anaconda.com/download/>`__ (as of version 0.15, Sciris is only compatible with Python 3), and make sure it's the default Python, e.g.

::

   your_computer:~> python
   Python 3.7.4 (default, Aug 13 2019, 20:35:49)
   [GCC 7.3.0] :: Anaconda, Inc. on linux
   Type "help", "copyright", "credits" or "license" for more information.

5. Clone the Sciris repositories:
   ``git clone http://github.com/sciris/sciris.git`` and
   ``git clone http://github.com/sciris/scirisweb.git``.

6. Run ``pip install -e .`` in each of the two Sciris folders.

7. To test, open up a new Python window and type ``import sciris`` and
   ``import scirisweb``. You should see something like:

::

   >>> import sciris
   >>> import scirisweb


Installing on Windows
~~~~~~~~~~~~~~~~~~~~~


Package and library dependencies
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

First, make sure that you have ``npm`` (included in Node.js installation) and ``git`` installed on your machine.

Install `Anaconda Python <https://www.anaconda.com/download/>`__. In your Python setup, you also need to have the following packages (instructions in parentheses show how to install with Anaconda Python environment already installed). **Note**, these should all be installed automatically when you type ``pip install -e .`` in the Sciris and ScirisWeb folders.


Database dependencies
^^^^^^^^^^^^^^^^^^^^^

If you use Redis as your DataStore mode, you will need to have Redis installed on your computer (as a service). Redis does not directly support Windows, but there is a `MicrosoftArchive page on GitHub <https://github.com/MicrosoftArchive/redis>`__ where you may go for installation directions on your Windows machine. (For example, it can be installed at `this site <https://github.com/MicrosoftArchive/redis/releases>`__ , downloading a .msi file). It ends up being installed as a service which you can navigate to by going the Windows Task Manager and going to the Services tab. Make sure the ``Redis`` service is in the Running state.

Most likely, the directory for your Redis executables will be installed at ``C:\Program Files\Redis``. In that directory, you can double-click the icon for ``redis-cli.exe`` to start the redis database command line interface at the default Redis database (#0). You can do ``keys *`` to look at all of the store key / value pairs in the database, and ``exit`` exits the interface.

You will probably want to use a non-default (i.e. ``N`` is not 0) database. To investigate what keys are in, for example, database #2, while you are within ``redis-cli``, you can type ``select 2`` to switch to that database.


Installing on Mac
~~~~~~~~~~~~~~~~~

1. Install Git. This can be done by installing Xcode commandline tools.

::

        xcode-select --install

2. Install NodeJS. Visit https://nodejs.org/en/download/ and download the Mac version and install.

3. Install Redis: https://redis.io/topics/quickstart or run (Assumming brew is installed)

::

        brew install redis

4. Install `Anaconda Python 3 <https://www.anaconda.com/download/>`__, and make sure it's the default Python, e.g.

::

   your_computer:~> python
   Python 3.7.4 (default, Aug 13 2019, 20:35:49)
   [GCC 7.3.0] :: Anaconda, Inc. on linux
   Type "help", "copyright", "credits" or "license" for more information.

5.  Create a directory that will hold Sciris. For reference purposes we will create and refer to that directory as ``pyenv``.

6.  Clone the Sciris repository into ``pyenv``:
    ``git clone http://github.com/sciris/sciris.git``

7.  Create a Python virtual environment (venv) inside the directory of your choice. This will be the parent of the Sciris folder.

::

     `virtualenv venv`

More information about `python virtual environments <http://docs.python-guide.org/en/latest/dev/virtualenvs/>`__ can be found `here <http://docs.python-guide.org/en/latest/dev/virtualenvs/>`__. The project structure should be as follows;

::

          -pyenv
              -venv
              -sciris

8.  Get into the virtual environment. While inside the ``pyenv`` folder, to activate the virtual environment, type:

::

      ./venv/bin/activate

9.  Change to the Sciris root folder and type:

::

   python setup.py develop

10. Repeat in the ScirisWeb root folder:

::

   python setup.py develop

11. To test if the if everything is working accordingly, open Python window within the virtual environment and type ``import sciris`` and ``import scirisweb``. If no errors occur, then the import worked.


Multhreaded deployment
----------------------

The problem with the simple deployment method described above is that requests are single-threaded. If this is an issue, recommended deployment is using ``nginx`` to serve the static files, and ``gunicorn`` to run the Flask app. Note that it is common for an application to call several RPCs with each page load. This means that the multithreaded deployment can result in improved site performance even for a single user.


Requirements
~~~~~~~~~~~~

You must have nginx (``sudo apt install nginx``) and gunicorn
(``pip install gunicorn``) installed.


Set up nginx
~~~~~~~~~~~~

1. Copy ``examples/gunicorn/example_nginx_config`` to e.g.
   ``/etc/nginx/sites-enabled/my_app`` (can change filename if desired)
2. Edit the copied file to specify

   -  The hostname/URL for the site e.g. ``my_app.com``
   -  The full path to the directory containing ``index.html`` on the
      system running ``nginx``
   -  Change the port in ``proxy_pass`` line if desired - it must match
      the port in ``launch_gunicorn``

3. Reload or restart ``nginx`` e.g. ``sudo service nginx reload``

For example, this will start it running at ``localhost:8188``:

.. code:: bash

   server {
       listen 8188;
       server_name localhost;
       location / {
           root /home/my_username/my_sciris_app;
       }
       location /api {
           proxy_pass http://127.0.0.1:8097/;
       }
   }


Run gunicorn
~~~~~~~~~~~~

1. Copy ``examples/gunicorn/example_launch_gunicorn`` to the folder with your app (e.g. ``launch_my_app_gunicorn``), and set the number of workers as desired - usual recommendation is twice the number of CPUs but for applications that are CPU bound (e.g., an RPC call runs a model) then it may be better to reduce it to just the number of CPUs.
2. The example script references the Flask app using ``name_of_your_app:flask_app``. The ``name_of_your_app`` should be importable in Python (either via running Python in the current directory, or installing as a package via ``pip``) and ``flask_app`` is the name of a variable containing the Flask application. So for  example, you might have a file ``foo.py`` containing

.. code:: python

   app = sw.ScirisApp(__name__, name="My App")
   the_app = app.flask_app

in which case the ``launch_my_app_gunicorn`` script should contain ``foo:the_app`` instead of ``name_of_your_app:flask_app``.

3. Run ``launch_my_app_gunicorn``. This will need to be kept running to support the site (so run via ``nohup`` or ``screen`` etc.).

For example:

.. code:: bash

   cd my_app
   screen -S my_app_session
   ./launch_my_app_gunicorn
   <you can now close the terminal>

   ...

   <coming back later, you can restart it with>
   screen -R my_app_session

Note that for local development, you can add the ``--reload`` flag to the ``gunicorn`` command to automatically reload the site. This can be helpful if using the ``nginx+gunicorn`` setup for local development.


Examples
--------

In the ``examples`` and ``vue_proto_webapps`` directories are contained a number of working examples of web applications combining Vue, Flask, and Twisted. These are being used as stepping stones for developing the main framework based in ``user_interface``, ``session_manager``, ``model_code``, and ``bin``.


Hello World
~~~~~~~~~~~

A very simple test case of Sciris. In the ``examples/helloworld`` folder, type ``python app.py``. If you go to ``localhost:8080`` in your browser, it should be running a simple Python webapp.

See the directions `here <https://github.com/sciris/scirisweb/tree/develop/examples/helloworld>`__ on how to install and run this example.

            

Raw data

            {
    "_id": null,
    "home_page": "http://github.com/sciris/scirisweb",
    "name": "scirisweb",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "scientific,webapp,framework",
    "author": "Sciris Development Team",
    "author_email": "info@sciris.org",
    "download_url": "https://files.pythonhosted.org/packages/30/62/9a25c4cd5dd95219016ceb0a4e5d82f9eddfb0dee76dbdf8c82a299b3def/scirisweb-1.0.0.tar.gz",
    "platform": "OS Independent",
    "description": "Welcome to ScirisWeb\n====================\n\n**NOTE:** While Sciris is still in active development, ScirisWeb is no longer actively maintained. It is still functional, but you may wish to use a more modern Python webapp framework instead, such as `Shiny for Python <https://shiny.posit.co/py>`_, `Plotly Dash <https://dash.plotly.com>`_, or `Streamlit <https://streamlit.io/>`_.\n\nWhat is Sciris?\n---------------\n\nGlad you asked! **Sciris** (http://sciris.org) is a library of tools that can make it easier and more pleasant to write scientific Python code. Built on top of `NumPy <https://numpy.org/>`__ and `Matplotlib <https://matplotlib.org/>`__, Sciris provides functions covering a wide range of common array and plotting operations. This means you can get more done with less code, and spend less time looking things up on StackOverflow.\n\n**ScirisWeb** is an extension of Sciris that allows you to build Python webapps without reinventing the wheel \u2013 kind of like `Shiny <https://shiny.rstudio.com/>`__ for Python. In contrast to `Plotly Dash <https://plotly.com/dash/>`__ and `Streamlit <https://www.streamlit.io/>`__, which have limited options for customization, ScirisWeb is completely modular, so you have control over which tools to use for which aspects of the project. Out of the box, ScirisWeb provides a \"just works\" solution using `Vuejs <https://vuejs.org/>`__ for the frontend, `Flask <https://flask.palletsprojects.com/>`__ as the web framework, `Redis <https://redis.io/>`__ for the (optional) database, and Matplotlib/`mpld3 <https://github.com/mpld3/mpld3>`__ for plotting. But if you want a React frontend linked to an SQL database with Plotly figures, ScirisWeb can serve as the glue holding all of that together.\n\nScirisWeb is available on `PyPi <https://pypi.org/project/scirisweb/>`__ (``pip install sciris``) and `GitHub <https://github.com/sciris/scirisweb>`__. Full documentation is available at http://docs.sciris.org. If you have questions, feature suggestions, or would like some help getting started, please reach out to us at info@sciris.org.\n\n\nHighlights\n~~~~~~~~~~\nSome highlights of ScirisWeb (``import scirisweb as sw``):\n\n-  **ScirisApp** \u2013 An extension of a Flask App that can be created as simply as ``app = sw.ScirisApp(config)`` and run with ``app.run()``.\n-  **RPCs** \u2013 Simple \"remote procedure calls\" that define how the frontend (web interface) interacts with the backend (Python server).\n-  **Datastore** \u2013 For more fully-featured webapps, user and data management are available based on Redis (with additional options for SQL or file-based databases).\n\n\nWhere did Sciris come from?\n~~~~~~~~~~~~~~~~~~~~~~~~~~~\nDevelopment of Sciris began in 2014 to support development of the `Optima <http://optimamodel.com>`__ suite of models. We kept encountering the same issues and inconveniences over and over while building scientific webapps, and began collecting the tools we used to overcome these issues into a shared library. This library evolved into Sciris. (Note: while \"Sciris\" doesn't mean anything, \"iris\" means \"rainbow\" in Greek, and the name was loosely inspired by the wide spectrum of scientific computing features included in Sciris.)\n\n\nWhere has ScirisWeb been used?\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\nScirisWeb is currently used by a number of scientific computing libraries, including `Atomica <http://atomica.tools>`__ and `Covasim <http://covasim.org>`__. ScirisWeb also provides the backend for webapps such as the `Cascade Analysis Tool <http://cascade.tools>`__, `HIPtool <http://hiptool.org>`__, and `Covasim <http://app.covasim.org>`__.\n\n\nInstallation and run instructions\n---------------------------------\n\n\n5-second quick start guide\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n1. Install ScirisWeb: ``pip install scirisweb``\n\n2. Use ScirisWeb: ``import scirisweb as sw``\n\n\n20-second quick start guide\n\n1. Download ScirisWeb (e.g. ``git clone http://github.com/sciris/scirisweb``)\n\n2. Install ScirisWeb (which will install Sciris as well): ``cd scirisweb; pip install -e .``\n\n3. Change to the Hello World folder: ``cd examples/helloworld``\n\n4. Run the app: ``python app.py``\n\n5. Go to ``localhost:8080`` in your browser\n\n6. Have fun!\n\n\nMedium-quick start guide\n~~~~~~~~~~~~~~~~~~~~~~~~\n\nNote: if you're a developer, you'll likely already have some/all of these packages installed.\n\n1. Install `NodeJS <https://nodejs.org/en/download/>`__ (JavaScript manager)\n\n2. Install `Redis <https://redis.io/topics/quickstart>`__ (database)\n\n3. Install `Anaconda Python <https://www.anaconda.com/download/>`__ (scientific Python environment)\n\n4. Clone and install Sciris: ``git clone http://github.com/sciris/sciris``\n\n5. Clone ScirisWeb: ``git clone http://github.com/sciris/scirisweb``\n\n6. Once you've done all that, to install, simply run ``pip install -e .`` in the root folders of ``sciris`` and ``scirisweb``. This should install Sciris and ScirisWeb as importable Python modules.\n\nTo test, open up a new Python window and type ``import sciris`` (and/or ``import scirisweb``)\n\nIf you have problems, please email info@sciris.org, or consult the rest of this guide for more information.\n\n\nInstalling on Linux\n~~~~~~~~~~~~~~~~~~~\n\nThe easiest way to install Sciris is by using pip: ``pip install scirisweb`` (which will also automatically install ``sciris``). If you want to install from source, follow these steps:\n\n1. Install Git: ``sudo apt install git``\n\n2. Install NodeJS: ``sudo apt install nodejs``\n\n3. Install Redis: https://redis.io/topics/quickstart\n\n4. (Optional) Install `Anaconda Python <https://www.anaconda.com/download/>`__ (as of version 0.15, Sciris is only compatible with Python 3), and make sure it's the default Python, e.g.\n\n::\n\n   your_computer:~> python\n   Python 3.7.4 (default, Aug 13 2019, 20:35:49)\n   [GCC 7.3.0] :: Anaconda, Inc. on linux\n   Type \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n\n5. Clone the Sciris repositories:\n   ``git clone http://github.com/sciris/sciris.git`` and\n   ``git clone http://github.com/sciris/scirisweb.git``.\n\n6. Run ``pip install -e .`` in each of the two Sciris folders.\n\n7. To test, open up a new Python window and type ``import sciris`` and\n   ``import scirisweb``. You should see something like:\n\n::\n\n   >>> import sciris\n   >>> import scirisweb\n\n\nInstalling on Windows\n~~~~~~~~~~~~~~~~~~~~~\n\n\nPackage and library dependencies\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nFirst, make sure that you have ``npm`` (included in Node.js installation) and ``git`` installed on your machine.\n\nInstall `Anaconda Python <https://www.anaconda.com/download/>`__. In your Python setup, you also need to have the following packages (instructions in parentheses show how to install with Anaconda Python environment already installed). **Note**, these should all be installed automatically when you type ``pip install -e .`` in the Sciris and ScirisWeb folders.\n\n\nDatabase dependencies\n^^^^^^^^^^^^^^^^^^^^^\n\nIf you use Redis as your DataStore mode, you will need to have Redis installed on your computer (as a service). Redis does not directly support Windows, but there is a `MicrosoftArchive page on GitHub <https://github.com/MicrosoftArchive/redis>`__ where you may go for installation directions on your Windows machine. (For example, it can be installed at `this site <https://github.com/MicrosoftArchive/redis/releases>`__ , downloading a .msi file). It ends up being installed as a service which you can navigate to by going the Windows Task Manager and going to the Services tab. Make sure the ``Redis`` service is in the Running state.\n\nMost likely, the directory for your Redis executables will be installed at ``C:\\Program Files\\Redis``. In that directory, you can double-click the icon for ``redis-cli.exe`` to start the redis database command line interface at the default Redis database (#0). You can do ``keys *`` to look at all of the store key / value pairs in the database, and ``exit`` exits the interface.\n\nYou will probably want to use a non-default (i.e. ``N`` is not 0) database. To investigate what keys are in, for example, database #2, while you are within ``redis-cli``, you can type ``select 2`` to switch to that database.\n\n\nInstalling on Mac\n~~~~~~~~~~~~~~~~~\n\n1. Install Git. This can be done by installing Xcode commandline tools.\n\n::\n\n        xcode-select --install\n\n2. Install NodeJS. Visit https://nodejs.org/en/download/ and download the Mac version and install.\n\n3. Install Redis: https://redis.io/topics/quickstart or run (Assumming brew is installed)\n\n::\n\n        brew install redis\n\n4. Install `Anaconda Python 3 <https://www.anaconda.com/download/>`__, and make sure it's the default Python, e.g.\n\n::\n\n   your_computer:~> python\n   Python 3.7.4 (default, Aug 13 2019, 20:35:49)\n   [GCC 7.3.0] :: Anaconda, Inc. on linux\n   Type \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n\n5.  Create a directory that will hold Sciris. For reference purposes we will create and refer to that directory as ``pyenv``.\n\n6.  Clone the Sciris repository into ``pyenv``:\n    ``git clone http://github.com/sciris/sciris.git``\n\n7.  Create a Python virtual environment (venv) inside the directory of your choice. This will be the parent of the Sciris folder.\n\n::\n\n     `virtualenv venv`\n\nMore information about `python virtual environments <http://docs.python-guide.org/en/latest/dev/virtualenvs/>`__ can be found `here <http://docs.python-guide.org/en/latest/dev/virtualenvs/>`__. The project structure should be as follows;\n\n::\n\n          -pyenv\n              -venv\n              -sciris\n\n8.  Get into the virtual environment. While inside the ``pyenv`` folder, to activate the virtual environment, type:\n\n::\n\n      ./venv/bin/activate\n\n9.  Change to the Sciris root folder and type:\n\n::\n\n   python setup.py develop\n\n10. Repeat in the ScirisWeb root folder:\n\n::\n\n   python setup.py develop\n\n11. To test if the if everything is working accordingly, open Python window within the virtual environment and type ``import sciris`` and ``import scirisweb``. If no errors occur, then the import worked.\n\n\nMulthreaded deployment\n----------------------\n\nThe problem with the simple deployment method described above is that requests are single-threaded. If this is an issue, recommended deployment is using ``nginx`` to serve the static files, and ``gunicorn`` to run the Flask app. Note that it is common for an application to call several RPCs with each page load. This means that the multithreaded deployment can result in improved site performance even for a single user.\n\n\nRequirements\n~~~~~~~~~~~~\n\nYou must have nginx (``sudo apt install nginx``) and gunicorn\n(``pip install gunicorn``) installed.\n\n\nSet up nginx\n~~~~~~~~~~~~\n\n1. Copy ``examples/gunicorn/example_nginx_config`` to e.g.\n   ``/etc/nginx/sites-enabled/my_app`` (can change filename if desired)\n2. Edit the copied file to specify\n\n   -  The hostname/URL for the site e.g. ``my_app.com``\n   -  The full path to the directory containing ``index.html`` on the\n      system running ``nginx``\n   -  Change the port in ``proxy_pass`` line if desired - it must match\n      the port in ``launch_gunicorn``\n\n3. Reload or restart ``nginx`` e.g. ``sudo service nginx reload``\n\nFor example, this will start it running at ``localhost:8188``:\n\n.. code:: bash\n\n   server {\n       listen 8188;\n       server_name localhost;\n       location / {\n           root /home/my_username/my_sciris_app;\n       }\n       location /api {\n           proxy_pass http://127.0.0.1:8097/;\n       }\n   }\n\n\nRun gunicorn\n~~~~~~~~~~~~\n\n1. Copy ``examples/gunicorn/example_launch_gunicorn`` to the folder with your app (e.g. ``launch_my_app_gunicorn``), and set the number of workers as desired - usual recommendation is twice the number of CPUs but for applications that are CPU bound (e.g., an RPC call runs a model) then it may be better to reduce it to just the number of CPUs.\n2. The example script references the Flask app using ``name_of_your_app:flask_app``. The ``name_of_your_app`` should be importable in Python (either via running Python in the current directory, or installing as a package via ``pip``) and ``flask_app`` is the name of a variable containing the Flask application. So for  example, you might have a file ``foo.py`` containing\n\n.. code:: python\n\n   app = sw.ScirisApp(__name__, name=\"My App\")\n   the_app = app.flask_app\n\nin which case the ``launch_my_app_gunicorn`` script should contain ``foo:the_app`` instead of ``name_of_your_app:flask_app``.\n\n3. Run ``launch_my_app_gunicorn``. This will need to be kept running to support the site (so run via ``nohup`` or ``screen`` etc.).\n\nFor example:\n\n.. code:: bash\n\n   cd my_app\n   screen -S my_app_session\n   ./launch_my_app_gunicorn\n   <you can now close the terminal>\n\n   ...\n\n   <coming back later, you can restart it with>\n   screen -R my_app_session\n\nNote that for local development, you can add the ``--reload`` flag to the ``gunicorn`` command to automatically reload the site. This can be helpful if using the ``nginx+gunicorn`` setup for local development.\n\n\nExamples\n--------\n\nIn the ``examples`` and ``vue_proto_webapps`` directories are contained a number of working examples of web applications combining Vue, Flask, and Twisted. These are being used as stepping stones for developing the main framework based in ``user_interface``, ``session_manager``, ``model_code``, and ``bin``.\n\n\nHello World\n~~~~~~~~~~~\n\nA very simple test case of Sciris. In the ``examples/helloworld`` folder, type ``python app.py``. If you go to ``localhost:8080`` in your browser, it should be running a simple Python webapp.\n\nSee the directions `here <https://github.com/sciris/scirisweb/tree/develop/examples/helloworld>`__ on how to install and run this example.\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Scientific webapps for Python",
    "version": "1.0.0",
    "project_urls": {
        "Homepage": "http://github.com/sciris/scirisweb"
    },
    "split_keywords": [
        "scientific",
        "webapp",
        "framework"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8b97d2c8bf7e977832af5efb53345b0653f41ff41b2b9aded7bae1956a50c09",
                "md5": "1e41c9c90e33f2a963691d7a7bad56ae",
                "sha256": "7e6c867769d33a84c2236b1a84bb33cf6c8d174fdf2d597f165a560610a664e9"
            },
            "downloads": -1,
            "filename": "scirisweb-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1e41c9c90e33f2a963691d7a7bad56ae",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 38075,
            "upload_time": "2023-12-14T01:26:18",
            "upload_time_iso_8601": "2023-12-14T01:26:18.479459Z",
            "url": "https://files.pythonhosted.org/packages/e8/b9/7d2c8bf7e977832af5efb53345b0653f41ff41b2b9aded7bae1956a50c09/scirisweb-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30629a25c4cd5dd95219016ceb0a4e5d82f9eddfb0dee76dbdf8c82a299b3def",
                "md5": "082f6c69210500f276cb5f0a951d1b0d",
                "sha256": "8cbd126a68d7ca7b6ba966fb98869dc05e39b91471679cc9da5f6d701aaaf295"
            },
            "downloads": -1,
            "filename": "scirisweb-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "082f6c69210500f276cb5f0a951d1b0d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 45770,
            "upload_time": "2023-12-14T01:26:20",
            "upload_time_iso_8601": "2023-12-14T01:26:20.983377Z",
            "url": "https://files.pythonhosted.org/packages/30/62/9a25c4cd5dd95219016ceb0a4e5d82f9eddfb0dee76dbdf8c82a299b3def/scirisweb-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-14 01:26:20",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "sciris",
    "github_project": "scirisweb",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "scirisweb"
}
        
Elapsed time: 0.16060s