Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kitware/trame-server

Internal server side implementation of trame
https://github.com/kitware/trame-server

trame trame-maintenance-program

Last synced: 30 days ago
JSON representation

Internal server side implementation of trame

Awesome Lists containing this project

README

        

trame-server: server implementation of trame
===========================================================================

.. image:: https://github.com/Kitware/trame-server/actions/workflows/test_and_release.yml/badge.svg
:target: https://github.com/Kitware/trame-server/actions/workflows/test_and_release.yml
:alt: Test and Release

trame-server is the server implementation of `trame `_.
This Python library provide the server implementation of the shared state and controller along with the definition of the web server.
The web server aims to be flexible so it can be use within a Jupyter environment or as a standalone desktop application.

This package is not supposed to be used by itself but rather should come as a dependency of **trame**.
For any specificity, please refer to `the trame documentation `_.

Installing
-----------------------------------------------------------

trame-server can be installed with `pip `_:

.. code-block:: bash

pip install --upgrade trame-server

Usage
-----------------------------------------------------------

The `Trame Tutorial `_ is the place to go to learn how to use the library and start building your own application.

The `API Reference `_ documentation provides API-level documentation.

**Environments variables**

* **TRAME_LOG_NETWORK** : Path to log file for capturing network exchange. (default: None)
* **TRAME_WS_MAX_MSG_SIZE** : Maximum size in bytes of any ws message. (default: 10MB)
* **TRAME_WS_HEART_BEAT** : Time in second before assuming the server is non-responsive. (default: 30s)
* **TRAME_DESKTOP_DEBUG** : If defined it will allow user to inspect the web content in desktop mode
* **TRAME_SERVER** : If set to true, this will prevent browser from opening by default

**Life cycle callbacks**

Life cycle events are directly managed on the application controller
and are prefixed with `on_*`.

* **on_server_start** : Executed at server.start() call while passing the server as argument.
* **on_server_bind** : WSLinkServer is getting bound to trame so you can attach your own routes. Its instance will be passed as argument to callback.
* **on_server_ready** : All protocols initialized and available for client to connect
* **on_client_connected** : Connection established to server
* **on_client_exited** : Linked to browser "beforeunload" event
* **on_server_exited** : Trame is exiting its event loop

* **on_server_reload** : If callback registered it can be use to hot_reload methods like the UI.

License
-----------------------------------------------------------

trame-server is made available under the Apache License, Version 2.0. For more details, see `LICENSE `_

Community
-----------------------------------------------------------

`Trame `_ | `Discussions `_ | `Issues `_ | `RoadMap `_ | `Contact Us `_

.. image:: https://zenodo.org/badge/410108340.svg
:target: https://zenodo.org/badge/latestdoi/410108340

Enjoying trame?
-----------------------------------------------------------

Share your experience `with a testimonial `_ or `with a brand approval `_.