Metadata-Version: 2.1
Name: bfabric-web-apps
Version: 0.5.1
Summary: A package containing handy boilerplate utilities for developing bfabric web-applications
Home-page: https://gitlab.bfabric.org/bfabricpublic/bfabric-web-apps/-/wikis/home/
License: MIT
Keywords: bfabric,lims,dash,web-apps,laboratory,bioinformatics
Author: Marc Zuber, Griffin White, GWC GmbH
Requires-Python: >=3.11,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Dash
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Requires-Dist: bfabric (>=1.16.2,<2.0.0)
Requires-Dist: cachetools (>=5.0.0,<6.0.0)
Requires-Dist: dash (>=3.0.2,<4.0.0)
Requires-Dist: dash-bootstrap-components (>=2.0.0,<3.0.0)
Requires-Dist: dash-daq (>=0.6.0,<0.7.0)
Requires-Dist: flask-session (>=0.8.0,<0.9.0)
Requires-Dist: gunicorn (>=23.0.0,<24.0.0)
Requires-Dist: pydantic-settings (>=2.8.1,<3.0.0)
Requires-Dist: pydantic[email] (>=2.10.6,<3.0.0)
Requires-Dist: rq (==1.15.1)
Project-URL: Repository, https://gitlab.bfabric.org/bfabricpublic/bfabric-web-apps
Description-Content-Type: text/markdown

<a id="readme-top"></a>

<!-- PROJECT LOGO -->
<br />
<div align="center">
  <img src="https://drive.google.com/uc?export=view&id=1_RekqDx9tOY-4ziZLn7cG9sozMXIhrfE" alt="Logo" width="80" height="50.6">

<h3 align="center">B-Fabric Web Apps</h3>

  <p align="center">
    A Python-based library designed for the development and integration of satellite applications with the B-Fabric Laboratory Information Management System (LIMS).
    <br />
    <a href="https://bfabric-docs.gwc-solutions.ch/"><strong>Explore the documentation »</strong></a>
    <br />
    <br />
    <a href="https://template-d12.bfabric.org/">View Demo</a>
  </p>
</div>


<!-- TABLE OF CONTENTS -->
## Table of Contents

- [About The Project](#about-the-project)
  - [Key Features](#key-features)
  - [Built With](#built-with)
- [Quickstart](#Quickstart)
  - [Basic Usage Example](#Basic-Usage-Example)
  - [Running Your Application](#running-your-application)
  - [Example Usage and Template Overview](#example-usage-and-template-overview)
- [What Is B-Fabric?](#what-is-bfabric)
- [What Is B-FabricPy?](#what-is-bfabricpy)
- [What Is Dash?](#what-is-dash)
- [Roadmap](#roadmap)
- [Contributing](#contributing)
- [License](#license)
- [Contact](#contact)
- [Acknowledgments](#acknowledgments)




## About The Project

The `bfabric_web_apps` is a Python library designed to simplify the creation of web applications that interact with B-Fabric. The library streamlines the development of B-Fabric satellite applications by standardizing common patterns and providing developers with a simpler and more efficient code base. B-Fabric Web Apps are modular satellite applications that extend the functionality of the B-Fabric Laboratory Information Management System (LIMS).

### Key Features

- **Token Management** – Securely handle authentication tokens for API access.  
- **Entity Data Handling** – Retrieve, modify, and update B-Fabric entities dynamically.  
- **Logger** – Integrated logging for API calls, events, and errors.  
- **Layouts and UI Components** – Utilize predefined structures to streamline app design.

### Built With

* [![Python][Python.js]][Python-url]
* [![Dash][Dash.js]][Dash-url]
* [![Plotly][Plotly.js]][Plotly-url]
* [![Flask][Flask.js]][Flask-url]

<p align="right">(<a href="#readme-top">back to top</a>)</p>

## Quickstart

You can install the `bfabric_web_apps` module via pip:

```sh
pip install bfabric_web_apps
```

#### Basic Usage Example

After installation, you can create a simple Dash-based web application using `bfabric_web_apps` like this:

```python
# Import necessary modules
from dash import html
from bfabric_web_apps import(
    create_app,
    get_static_layout,
    HOST, 
    PORT,
)

# Initialize the Dash application
app = create_app()

# Define application title
app_title = "My B-Fabric App"

# Define the main layout content
app_specific_layout = html.Div([
    html.H1("Welcome to My B-Fabric App"),
    html.P("This is a quickstart example using bfabric_web_apps.")
])

# Optionally define documentation content
documentation_content = [
    html.H2("Documentation"),
    html.P("Describe your app's features here.")
]

# Set up the application layout
app.layout = get_static_layout(
    app_title,  # Title shown in the browser tab
    app_specific_layout,  # Main application content
    documentation_content  # Documentation section
)

# Run the application
if __name__ == "__main__":
    app.run(debug=False, port=PORT, host=HOST)

```

This example sets up a minimal web application using bfabric_web_apps, providing a structured layout with configurable content.

<p align="right">(<a href="#readme-top">back to top</a>)</p>

## Running Your Application

After creating your Dash app, you have several options to run it:

### Development Mode (Flask Dev Server)

For development with auto-reload:

```sh
python your_app.py
```

Or using the CLI tool:

```sh
bfabric-webapp your_app:app.server --dev
```

### Production Mode (Gunicorn)

For production deployments, the library includes Gunicorn as a dependency and provides a `gunicorn.conf.py` configuration file that automatically reads settings from your `.env` file (HOST, PORT, etc.).

**Using the CLI tool (recommended):**

```sh
bfabric-webapp your_app:app.server
```

The CLI automatically detects your environment:
- If `DEBUG=True` in `.env`: Uses Flask dev server
- If `DEBUG=False` in `.env`: Uses Gunicorn for production
- Use `--dev` flag to force development mode
- Use `--prod` flag to force production mode

**Using Gunicorn directly:**

```sh
gunicorn 'your_app:app.server' -c gunicorn.conf.py
```

Or with uv:

```sh
uv run gunicorn 'your_app:app.server' -c gunicorn.conf.py
```

The gunicorn configuration automatically uses your `.env` settings for HOST, PORT, and other server options.

**URL Path Prefix:** To run the app under a subpath (e.g., `/myapp/`), set `SCRIPT_NAME=/myapp` in your `.env` file.

<p align="right">(<a href="#readme-top">back to top</a>)</p>

#### Example Usage and Template Overview

To explore the usage of the `bfabric_web_apps` library in greater detail, refer to the `bfabric-web-app-template` repository. This template demonstrates how to:
- Set up a project using `bfabric_web_apps`.
- Create visual dashboards with Dash.
- Interact with the B-Fabric LIMS through the Python library.  

<p align="right">(<a href="#readme-top">back to top</a>)</p>

## What Is B-Fabric?

B-Fabric is a Laboratory Information Management System (LIMS) used for managing scientific experiments and their associated data in laboratories. It provides a platform for tracking samples, analyzing results, and organizing workflows efficiently. 

For more details, visit the [B-Fabric official website](https://fgcz-bfabric.uzh.ch/bfabric/).

<p align="right">(<a href="#readme-top">back to top</a>)</p>


## What Is BfabricPy?

BfabricPy is a Python library that provides a programmatic interface to interact with the [Bfabric SOAP WebService](https://fgcz-bfabric.uzh.ch/wiki/tiki-index.php?page=Webservices). It allows developers to integrate B-Fabric functionalities into custom Python applications. This library simplifies tasks like querying samples, uploading results, and interacting with the LIMS programmatically.

BfabricPy is a dependency of this project and is fetched directly from its GitHub repository during installation.

For more details, visit the [bfabricPy official Git repository](https://github.com/fgcz/bfabricPy/tree/main) or the library's [official documentation](https://fgcz.github.io/bfabricPy).
<p align="right">(<a href="#readme-top">back to top</a>)</p>


## What Is Dash?

Dash is a Python framework for building interactive web applications. It combines the power of Plotly for data visualization and Flask for backend support, making it ideal for scientific and analytical dashboards.

For more details, visit the [Dash official documentation](https://dash.plotly.com/).

<p align="right">(<a href="#readme-top">back to top</a>)</p>


## Roadmap

Contact the development team for planned features and known issues.

<p align="right">(<a href="#readme-top">back to top</a>)</p>


## Contributing

`bfabric_web_apps` is an open-source project, and therefore any contributions you make are greatly appreciated. If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

1. Fork the repository.
2. Create a new branch:
   ```sh
   git checkout -b feature/YourFeature
   ```
3. Make your changes and commit them:
   ```sh
   git commit -m "Add feature: YourFeature"
   ```
4. Push to your branch:
   ```sh
   git push origin feature/YourFeature
   ```
5. Open a Pull Request.

### Top contributors:

Contact the development team for contributor information.

<p align="right">(<a href="#readme-top">back to top</a>)</p>


## License

Distributed under the MIT License. See `LICENSE` file for more details.

<p align="right">(<a href="#readme-top">back to top</a>)</p>


## Contact

GWC GmbH - [LinkedIn](https://www.linkedin.com/company/gwc-gmbh/posts/?feedView=all)
Griffin White - [LinkedIn](https://www.linkedin.com/in/griffin-white-3aa20918a/)
Marc Zuber - [LinkedIn](https://www.linkedin.com/in/marc-zuber-1161b3305/)

<p align="right">(<a href="#readme-top">back to top</a>)</p>



## Acknowledgments

- [Plotly Dash](https://dash.plotly.com/)
- [Flask Framework](https://flask.palletsprojects.com/)
- [Python.org](https://www.python.org/)

<p align="right">(<a href="#readme-top">back to top</a>)</p>



<!-- MARKDOWN LINKS & IMAGES -->
[Python.js]: https://img.shields.io/badge/python-000000?style=for-the-badge&logo=python&logoColor=white
[Python-url]: https://www.python.org/
[Dash.js]: https://img.shields.io/badge/dash-20232A?style=for-the-badge&logo=dash&logoColor=61DAFB
[Dash-url]: https://dash.plotly.com/
[Plotly.js]: https://img.shields.io/badge/plotly-563D7C?style=for-the-badge&logo=plotly&logoColor=white
[Plotly-url]: https://plotly.com/
[Flask.js]: https://img.shields.io/badge/flask-0769AD?style=for-the-badge&logo=flask&logoColor=white
[Flask-url]: https://flask.palletsprojects.com/en/stable/

