npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

dash_extendable_graph

v1.2.0

Published

A Dash Graph component modified to support use of figure.data-structured input to extend and/or add traces.

Downloads

21

Readme

dash-extendable-graph

PyPI PyPI - Python Version Code Quality PyPI - License

dash-extendable-graph is a Dash component library. This library contains a single component: ExtendableGraph. The component is a fork of the Graph() component from dash-core-components (version 1.3.1). Best efforts will be made to keep in sync with the upstream repository.

The primary differentiation between ExtendableGraph and Graph components is the extendData callback. This component has been modified to follow an api that matches the format of figure['data'] (as opposed to the api defined Graph.extendData and Plotly.extendTraces()).

Note: As of version 1.1.0, dash-extendable-graph includes PlotlyJS as an internal dependency. Previously, the component assumed it would be used in conjunction with dash-core-components. As of dash-core-components version ^1.4.0, PlotlyJS is only available asynchronously when a Graph component exists on the page.

Installation

Get started with:

  1. Install Dash and dependencies: https://dash.plot.ly/installation
$ pip install -r requirements.txt
  1. Install dash-extendable-graph
$ pip install dash-extendable-graph
  1. Run python usage.py
  2. Visit http://localhost:8050 in your web browser

Usage

General examples may be found in usage.py

extendData properties

  1. updateData [list]: a list of dictionaries, each dictionary representing trace data in a format matching figure['data'] (e.g dict(x=[1], y=[1]))
  2. traceIndices [list, optional]: identify the traces that should be extended. If the specified trace index does not exist, a (new) corresponding trace shall be appended to the figure.
  3. maxPoints [number, optional]: define the maximum number of points to plot in the figure (per trace).

Based on the Plotly.extendTraces() api. However, the updateData key has been modified to better match the contents of Plotly.plot() (e.g. Graph.figure). Aside from following dash-familiar styling, this component allows the user to extend traces of different types in a single call (Plotly.extendTraces() takes a map of key:val and assumes all traces will share the same data keys).

Code

Extend a trace once per second, limited to 100 maximum points.

import dash_extendable_graph as deg
import dash
from dash.dependencies import Input, Output, State
import dash_html_components as html
import dash_core_components as dcc
import random

app = dash.Dash(__name__)

app.scripts.config.serve_locally = True
app.css.config.serve_locally = True

app.layout = html.Div([
    deg.ExtendableGraph(
        id='extendablegraph_example',
        figure=dict(
            data=[{'x': [0],
                   'y': [0],
                   'mode':'lines+markers'
                   }],
        )
    ),
    dcc.Interval(
        id='interval_extendablegraph_update',
        interval=1000,
        n_intervals=0,
        max_intervals=-1),
    html.Div(id='output')
])


@app.callback(Output('extendablegraph_example', 'extendData'),
              [Input('interval_extendablegraph_update', 'n_intervals')],
              [State('extendablegraph_example', 'figure')])
def update_extendData(n_intervals, existing):
    x_new = existing['data'][0]['x'][-1] + 1
    y_new = random.random()
    return [dict(x=[x_new], y=[y_new])], [0], 100


if __name__ == '__main__':
    app.run_server(debug=True)

Contributing

See CONTRIBUTING.md

Local Installation

  1. Dependencies
$ npm install
$ virtualenv venv
$ . venv/bin/activate
$ pip install -r requirements.txt

For developers:

$ pip install -r tests/requirements.txt
  1. Build
$ npm run build
  1. Check out the component via component-playground
$ npm run start
The demo app is in `src/demo`
  1. Check out the sample Dash application using the component
$ python setup.py install
$ python usage.py

Tests

Run locally

Run linting + integration tests in one command:

$ npm run test

Or run tests individually:

Code style

Uses flake8, eslint, and prettier. Check package.json, .eslintrc, .eslintignore for configuration settings.

$ npm run lint

Also you can apply formatting settings.

$ npm run format

Integration

Integration tests for the component can be found in tests/

$ pytest

Selenium test runner configuration options are located in pytest.ini (e.g. --webdriver, --headless). See dash[testing] documentation for more information on built-ins provided by the dash test fixture.

Run individual integration tests based on the filename.

$ pytest tests/test_extend_maxpoints.py

Continuous Integration via Github Actions

This repository uses github actions to automate testing. CI is triggered for each pull request into the master branch

Publishing

Create a production build and publish:

$ rm -rf dist
$ npm run build
$ python setup.py sdist bdist_wheel
$ twine upload dist/*
$ npm publish

Test your tarball by copying it into a new environment and installing it locally:

$ pip install dash_extendable_graph-X.X.X.tar.gz