Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mljar/mercury
Convert Jupyter Notebooks to Web Apps
https://github.com/mljar/mercury
data-science data-visualization jupyter jupyter-lab jupyter-notebook mercury mljar-mercury notebook notebook-application notebook-jupyter notebook-publish notebook-web notebooks-jupyter python
Last synced: 2 days ago
JSON representation
Convert Jupyter Notebooks to Web Apps
- Host: GitHub
- URL: https://github.com/mljar/mercury
- Owner: mljar
- License: agpl-3.0
- Created: 2021-12-20T13:43:44.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-08T14:07:30.000Z (5 months ago)
- Last Synced: 2024-10-29T14:52:56.650Z (about 1 month ago)
- Topics: data-science, data-visualization, jupyter, jupyter-lab, jupyter-notebook, mercury, mljar-mercury, notebook, notebook-application, notebook-jupyter, notebook-publish, notebook-web, notebooks-jupyter, python
- Language: Python
- Homepage: https://RunMercury.com
- Size: 5.29 MB
- Stars: 4,024
- Watchers: 45
- Forks: 255
- Open Issues: 83
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- my-awesome-github-stars - mljar/mercury - Convert Jupyter Notebooks to Web Apps (Python)
- awesome-cloudops - Mercury - raw/mljar/mercury" alt="Issues"><br><img align="right" src="https://img.shields.io/github/last-commit/mljar/mercury">](https://github.com/mljar/mercury) | - | Notebook, Jupiter, WebApp | Add interactive widgets in Python notebooks, so you can share notebooks as web applications. | (Tools)
- awesome-list - Mercury - Convert Python notebook to web app and share with non-technical users. (Web Development / C++/C Toolkit)
- best-of-jupyter - GitHub - 18% open ยท โฑ๏ธ 08.07.2024): (Notebook Tools)
- stars - mljar/mercury - Convert Jupyter Notebooks to Web Apps (Python)
- stars - mljar/mercury - Convert Jupyter Notebooks to Web Apps (Python)
README
[![Tests](https://github.com/mljar/mercury/actions/workflows/run-tests.yml/badge.svg)](https://github.com/mljar/mercury/actions/workflows/run-tests.yml)
[![PyPI version](https://badge.fury.io/py/mercury.svg)](https://badge.fury.io/py/mercury)
[![PyPI pyversions](https://img.shields.io/pypi/pyversions/mercury.svg)](https://pypi.python.org/pypi/mercury/)
[![Anaconda-Server Badge](https://anaconda.org/conda-forge/mljar-mercury/badges/license.svg)](https://anaconda.org/conda-forge/mljar-mercury)# Convert Jupyter Notebook to Web App
Mercury allows you to add interactive widgets in Python notebooks, so you can share notebooks as web applications. Forget about rewriting notebooks to web frameworks just to share your results. Mercury offers a set of widgets with simple re-execution of cells.
You can build with Mercury:
- Turn your notebook into beautiful [Web Apps](https://runmercury.com/tutorials/web-app-python-jupyter-notebook/),
- Create interactive [Presentations](https://runmercury.com/tutorials/presentation-python-jupyter-notebook/) with widgets, you can recompute slides during the show,
- Share notebooks as static [Websites](https://runmercury.com/tutorials/website-python-jupyter-notebook/),- Build data-rich [Dashboards](https://runmercury.com/tutorials/dashboard-python-jupyter-notebook/) with widgets,
- Create [Reports](https://runmercury.com/tutorials/report-python-jupyter-notebook/) with PDF exports, automatic scheduling, and email notifications (coming soon),
- Serve Python notebooks as [REST API](https://runmercury.com/tutorials/rest-api-python-jupyter-notebook/) endpoints (coming soon).
Mercury features:
- add widgets with Python code - no frontend experience needed!
- hide or show the notebook's code,
- export executed notebook to PDF or HTML,
- share multiple notebooks - no limits!
- embed notebook on any website,
- easy file upload and download from the notebook,
- add authentication to notebooks (coming soon),
- schedule automatic notebook execution (coming soon).## Widgets
Mercury provides multiple widgets. There are 3 types of widgets:
- [Input widgets](https://runmercury.com/docs/input-widgets/) are components that will appear in the sidebar when running the notebook in Mercury. They can be used to provide user input or trigger action in the notebook.
- [Output widgets](https://runmercury.com/docs/output-widgets/) help present notebook results to the user and control execution flow.
- [Custom Widgets](https://runmercury.com/docs/custom-widgets/) - you can use many custom widgets, for example, PyDeck, and Pivot Tables.
## Integrations
Mercury works with virtually every Python package!
Among the most important are machine learning libraries such as Scikit-Learn, Pandas, and Seaborn or visualization libraries: Plotly, matplotlib, Vega-Altair, and Ipyvizzu.
## Example
Simple code example that creates a widget and displays its value. You can interact with a widget in the Jupyter Notebook. Its value will be updated. However, to see the update in other cells you need to **manually execute** them.
Import package:
```python
import mercury as mr
```Create a [`Text`](https://runmercury.com/docs/input-widgets/text/) widget:
```python
name = mr.Text(value="Piotr", label="What is your name?")
```Print widget value:
```python
print(f"Hello {name.value}")
```#### Code in Jupyter Notebook
#### Mercury App
Use Mercury to run notebook as web application. **Cells are automatically re-executed** after widget change. Mercury re-executes only cells with widget definition and below it. In the example, cells 2 and 3 are re-executed after widget update.
## Documentation
๐ Read more about Mercury on [RunMercury.com](https://RunMercury.com).
## Installation
*Compatible with Python 3.7 and higher.*
Install with `pip`:
```
pip install mercury
```Install with `conda`:
```
conda install -c conda-forge mercury
```## Demo
Run Mercury with demo notebooks.
```
mercury run demo
```Please check [127.0.0.1:8000](http://127.0.0.1:8000) to see demo notebooks.
## Deployment
You have several options to deploy the notebook. You can use the self-hosted option where you use [docker-compose](https://runmercury.com/docs/docker-compose/) on a VPS machine or use ngrok. There's also a possibility to use [Hugging Face Spaces](https://runmercury.com/docs/hugging-face/).
Another option is a Self-hosted commercial where you get access to the deployment dashboard where you manage notebooks and user access. In addition, you have access to user analytics; you can freely customize the style of your application. You benefit from private forks and email support.
The third option is to use [Mercury Cloud](https://runmercury.com/docs/cloud/). It's the easiest way to share notebooks online. You will be able to create a website with a few clicks.
## Mercury with your notebooks
To run Mercury with your notebook, please execute the following:
```
mercury run
```The command should be run in the same directory as notebooks. You can change code in Jupyter Notebook, and Mercury will **instantly** update web app.
## Mercury License
Mercury is released with AGPL v3 license.
Looking for dedicated support, a commercial-friendly license, and more features? The Mercury Pro is for you. Please see the details at [our website](https://runmercury.com/pricing/).