Skip to content
forked from hal9ai/hal9

Interactive data apps -- design visually, power with code

License

Notifications You must be signed in to change notification settings

brenda-lambert/hal9

 
 

Repository files navigation

Hal9: Interactive data apps — design visually, power with code

Hal9 PyPi Downloads Hal9 NPM Downloads

Hal9 is a framework for building interactive data apps for data scientists and engineers. It allows you to utilize your DS/ML code with minimal overhead, and frees you from having to worry about frontend web frameworks. Hal9 consists of the following components:

  • Visual Designer: A browser WYSIWYG interface to design your app via drag-and-drop, yet fuly customizable with HTML.
  • Multi-Lingual Server: Packages in R, Python, JavaScript (and more on the way!) for controlling the behavior of elements in your app.

Getting started

The quickest place to test things out is this hosted demo: hal9.com/new. Refer to the Docs at hal9.com/docs.

Python

pip install hal9
import hal9 as h9
h9.new("my_app")
h9.start("my_app")

R

The development version of the package can be installed via

remotes::install_github("hal9ai/hal9", subdir = "r")

library(hal9)
h9_new("my_app")
h9_start("my_app")

This requires Rust toolchain, e.g., rustup.rs.

CLI

Alternatively, if you prefer working from the terminal, you can clone this repo and run

cargo install --path server

hal9 new my_app
hal9 start my_app

This requires Rust toolchain, e.g., rustup.rs.

Principles

  • Easy to get started. You don't need to read a book or build a reactive execution graph in your head before you can build a dashboard.
  • First-class multi-lingual support. Power your apps with Python, or R, or combine them, natively, without having to use interop tools such as reticulate or rpy2. Rust and TypeScript APIs are being developed next, with many more to come.
  • Respect code and reproducibility. While we make it easy to build apps, all artifacts should be in standard formats so that you can (if you'd like) work with actual web designers on your team to fulfill corporate styling needs.
  • Seamless deployment from applications to production.

About

Interactive data apps -- design visually, power with code

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 72.5%
  • Rust 9.1%
  • HTML 6.4%
  • Python 5.2%
  • R 5.0%
  • CSS 0.9%
  • Other 0.9%