Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
dash-extendable-graph
Advanced tools
A Dash Graph component modified to support use of figure.data-structured input to extend and/or add traces.
dash-extendable-graph
is a Dash component library containing a single component: ExtendableGraph
. The component was forked from Plotly's core Graph
component (dash-core-components). dash-extendable-graph
has modified extendData
and prependData
properties that accept trace data matching the format for figure["data"]
. These properties support (1) adding new traces and (2) allow multiple trace types to be extended/prepended within a single callback (not supported by the core component)
Note: As of version 1.1.0, dash-extendable-graph
includes a minimized plotly.js as an internal dependency. Previously, the component assumed it would be used in conjunction with dash-core-components
.
Get started with:
$ pip install -r requirements.txt
$ pip install dash-extendable-graph
python usage.py
General examples may be found in usage.py
updateData
[list]: a list of dictionaries, each dictionary representing trace data in a format matching figure['data']
(e.g dict(x=[1], y=[1])
)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.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).
updateData
[list]: a list of dictionaries, each dictionary representing trace data in a format matching figure['data']
(e.g dict(x=[1], y=[1])
)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.maxPoints
[number, optional]: define the maximum number of points to plot in the figure (per trace).Based on the Plotly.prependTraces()
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 prepend traces of different types in a single call (Plotly.prependTraces()
takes a map of key:val and assumes all traces will share the same data keys).
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)
See CONTRIBUTING.md
$ npm install
$ virtualenv venv
$ . venv/bin/activate
$ pip install -r requirements.txt
For developers:
$ pip install -r tests/requirements.txt
$ npm run build
$ npm run start
The demo app is in `src/demo`
4. Check out the sample Dash application using the component
$ python setup.py install
$ python usage.py
Run linting + integration tests in one command:
$ npm run test
Or run tests individually:
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 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
This repository uses a github action to automate integration testing. Linting and Tests are triggered for each pull request created in the master
branch.
This repository uses a github action to automate package deployment (in this case, compiling a source archive and binary wheel using setuptools
). Publishing is triggered on each published release.
FAQs
A Dash Graph component modified to support use of figure.data-structured input to extend and/or add traces.
We found that dash-extendable-graph demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.