Skip to content

jeffgallini/dash-particles

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

273 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dash Particles dash-particles

dash-particles is a Dash component library for tsParticles backgrounds with a structured Python API. The actual Python package, docs, demo app, and release assets live in dash_particles/.

Animated preview of dash-particles presets

Start Here

Quick Example

import dash
from dash import html
import dash_particles as dp

app = dash.Dash(__name__)

app.layout = html.Div(
    dp.DashParticles(
        id="particles",
        config=dp.presets.stars(),
        height="100vh",
        width="100%",
    )
)

What v1.0.0 Focuses On

  • A stable Python-first config model based on dp.Options(...) instead of one giant dict
  • Curated dp.presets.* helpers for faster starts
  • Packaged runtime tiers that auto-load the smallest tsParticles bundle needed by each scene

About

Get started creating your own Dash components here.

Resources

Stars

3 stars

Watchers

0 watching

Forks

Packages

 
 
 

Contributors

Languages

  • Python 79.0%
  • JavaScript 15.9%
  • R 3.0%
  • Julia 2.0%
  • HTML 0.1%