Documentation

class pyvis.network.Network(height='600px', width='100%', directed=False, notebook=False, neighborhood_highlight=False, select_menu=False, filter_menu=False, bgcolor='#ffffff', font_color=False, layout=None, heading='', cdn_resources='local')[source]

The Network class is the focus of this library. All viz functionality should be implemented off of a Network instance.

To instantiate:

>>> nt = Network()
add_edge(source, to, **options)[source]

Adding edges is done based off of the IDs of the nodes. Order does not matter unless dealing with a directed graph.

>>> nt.add_edge(0, 1) # adds an edge from node ID 0 to node ID
>>> nt.add_edge(0, 1, value = 4) # adds an edge with a width of 4
Parameters:
  • arrowStrikethrough (bool) – When false, the edge stops at the arrow. This can be useful if you have thick lines and you want the arrow to end in a point. Middle arrows are not affected by this.
  • from (str or num) – Edges are between two nodes, one to and one from. This is where you define the from node. You have to supply the corresponding node ID. This naturally only applies to individual edges.
  • hidden (bool) – When true, the edge is not drawn. It is part still part of the physics simulation however!
  • physics (bool) – When true, the edge is part of the physics simulation. When false, it will not act as a spring.
  • title (str) – The title is shown in a pop-up when the mouse moves over the edge.
  • to (str or num) – Edges are between two nodes, one to and one from. This is where you define the to node. You have to supply the corresponding node ID. This naturally only applies to individual edges.
  • value (num) – When a value is set, the edges’ width will be scaled using the options in the scaling object defined above.
  • width (num) – The width of the edge. If value is set, this is not used.
add_edges(edges)[source]

This method serves to add multiple edges between existing nodes in the network instance. Adding of the edges is done based off of the IDs of the nodes. Order does not matter unless dealing with a directed graph.

Parameters:edges – A list of tuples, each tuple consists of source of edge, edge destination and and optional width.
add_node(n_id, label=None, shape='dot', color='#97c2fc', **options)[source]

This method adds a node to the network, given a mandatory node ID. Node labels default to node ids if no label is specified during the call.

>>> nt = Network("500px", "500px")
>>> nt.add_node(0, label="Node 0")
>>> nt.add_node(1, label="Node 1", color = "blue")
Parameters:
  • n_id (str or int) – The id of the node. The id is mandatory for nodes and they have to be unique. This should obviously be set per node, not globally.
  • label (str or int) – The label is the piece of text shown in or under the node, depending on the shape.
  • borderWidth (num (optional)) – The width of the border of the node.
  • borderWidthSelected (num (optional)) – The width of the border of the node when it is selected. When undefined, the borderWidth * 2 is used.
  • brokenImage (str (optional)) – When the shape is set to image or circularImage, this option can be an URL to a backup image in case the URL supplied in the image option cannot be resolved.
  • group (str (optional)) – When not undefined, the node will belong to the defined group. Styling information of that group will apply to this node. Node specific styling overrides group styling.
  • hidden (bool (optional)) – When true, the node will not be shown. It will still be part of the physics simulation though!
  • image (str (optional)) – When the shape is set to image or circularImage, this option should be the URL to an image. If the image cannot be found, the brokenImage option can be used.
  • labelHighlightBold (bool (optional)) – Determines whether or not the label becomes bold when the node is selected.
  • level (num (optional)) – When using the hierarchical layout, the level determines where the node is going to be positioned.
  • mass (num (optional)) – The barnesHut physics model (which is enabled by default) is based on an inverted gravity model. By increasing the mass of a node, you increase it’s repulsion. Values lower than 1 are not recommended.
  • physics (bool (optional)) – When false, the node is not part of the physics simulation. It will not move except for from manual dragging.
  • shape (str (optional)) – The shape defines what the node looks like. There are two types of nodes. One type has the label inside of it and the other type has the label underneath it. The types with the label inside of it are: ellipse, circle, database, box, text. The ones with the label outside of it are: image, circularImage, diamond, dot, star, triangle, triangleDown, square and icon.
  • size (num (optional)) – The size is used to determine the size of node shapes that do not have the label inside of them. These shapes are: image, circularImage, diamond, dot, star, triangle, triangleDown, square and icon.
  • title (str or html element (optional)) – Title to be displayed when the user hovers over the node. The title can be an HTML element or a string containing plain text or HTML.
  • value (num (optional)) – When a value is set, the nodes will be scaled using the options in the scaling object defined above.
  • x (num (optional)) – This gives a node an initial x position. When using the hierarchical layout, either the x or y position is set by the layout engine depending on the type of view. The other value remains untouched. When using stabilization, the stabilized position may be different from the initial one. To lock the node to that position use the physics or fixed options.
  • y (num (optional)) – This gives a node an initial y position. When using the hierarchical layout,either the x or y position is set by the layout engine depending on the type of view. The other value remains untouched. When using stabilization, the stabilized position may be different from the initial one. To lock the node to that position use the physics or fixed options.
add_nodes(nodes, **kwargs)[source]

This method adds multiple nodes to the network from a list. Default behavior uses values of ‘nodes’ for node ID and node label properties. You can also specify other lists of properties to go along each node.

Example:

>>> g = net.Network()
>>> g.add_nodes([1, 2, 3], size=[2, 4, 6], title=["n1", "n2", "n3"])
>>> g.nodes
>>> [{'id': 1, 'label': 1, 'shape': 'dot', 'size': 2, 'title': 'n1'},

Output:

>>> {'id': 2, 'label': 2, 'shape': 'dot', 'size': 4, 'title': 'n2'},
>>> {'id': 3, 'label': 3, 'shape': 'dot', 'size': 6, 'title': 'n3'}]
Parameters:nodes (list) – A list of nodes.
barnes_hut(gravity=-80000, central_gravity=0.3, spring_length=250, spring_strength=0.001, damping=0.09, overlap=0)[source]

BarnesHut is a quadtree based gravity model. It is the fastest. default and recommended solver for non-hierarchical layouts.

Parameters:
  • gravity (int) – The more negative the gravity value is, the stronger the repulsion is.
  • central_gravity (float) – The gravity attractor to pull the entire network to the center.
  • spring_length (int) – The rest length of the edges
  • spring_strength (float) – The strong the edges springs are
  • damping (float) – A value ranging from 0 to 1 of how much of the velocity from the previous physics simulation iteration carries over to the next iteration.
  • overlap (float) – When larger than 0, the size of the node is taken into account. The distance will be calculated from the radius of the encompassing circle of the node for both the gravity model. Value 1 is maximum overlap avoidance.
force_atlas_2based(gravity=-50, central_gravity=0.01, spring_length=100, spring_strength=0.08, damping=0.4, overlap=0)[source]

The forceAtlas2Based solver makes use of some of the equations provided by them and makes use of the barnesHut implementation in vis. The main differences are the central gravity model, which is here distance independent, and the repulsion being linear instead of quadratic. Finally, all node masses have a multiplier based on the amount of connected edges plus one.

Parameters:
  • gravity (int) – The more negative the gravity value is, the stronger the repulsion is.
  • central_gravity (float) – The gravity attractor to pull the entire network to the center.
  • spring_length (int) – The rest length of the edges
  • spring_strength (float) – The strong the edges springs are
  • damping (float) – A value ranging from 0 to 1 of how much of the velocity from the previous physics simulation iteration carries over to the next iteration.
  • overlap (float) – When larger than 0, the size of the node is taken into account. The distance will be calculated from the radius of the encompassing circle of the node for both the gravity model. Value 1 is maximum overlap avoidance.
from_DOT(dot)[source]

This method takes the contents of .DOT file and converts it to a PyVis visualization.

Assuming the contents of test.dot contains: digraph sample3 { A -> {B ; C ; D} C -> {B ; A} }

Usage:

>>> nt.Network("500px", "500px")
>>> nt.from_DOT("test.dot")
>>> nt.show("dot.html")
Parameters:dot (dot file) – The path of the dotfile being converted.
from_nx(nx_graph, node_size_transf=<function Network.<lambda>>, edge_weight_transf=<function Network.<lambda>>, default_node_size=10, default_edge_weight=1, show_edge_weights=True, edge_scaling=False)[source]

This method takes an exisitng Networkx graph and translates it to a PyVis graph format that can be accepted by the VisJs API in the Jinja2 template. This operation is done in place.

Parameters:
  • nx_graph (networkx.Graph instance) – The Networkx graph object that is to be translated.
  • node_size_transf (func) – function to transform the node size for plotting
  • edge_weight_transf (func) – function to transform the edge weight for plotting
  • default_node_size – default node size if not specified
  • default_edge_weight – default edge weight if not specified
>>> nx_graph = nx.cycle_graph(10)
>>> nx_graph.nodes[1]['title'] = 'Number 1'
>>> nx_graph.nodes[1]['group'] = 1
>>> nx_graph.nodes[3]['title'] = 'I belong to a different group!'
>>> nx_graph.nodes[3]['group'] = 10
>>> nx_graph.add_node(20, size=20, title='couple', group=2)
>>> nx_graph.add_node(21, size=15, title='couple', group=2)
>>> nx_graph.add_edge(20, 21, weight=5)
>>> nx_graph.add_node(25, size=25, label='lonely', title='lonely node', group=3)
>>> nt = Network("500px", "500px")
# populates the nodes and edges data structures
>>> nt.from_nx(nx_graph)
>>> nt.show("nx.html")
generate_html(name='index.html', local=True, notebook=False)[source]

This method gets the data structures supporting the nodes, edges, and options and updates the template to write the HTML holding the visualization. :type name_html: str

get_adj_list()[source]

This method returns the user an adjacency list representation of the network.

Returns:dictionary mapping of Node ID to list of Node IDs it

is connected to.

get_edges()[source]

This method returns an iterable list of edge objects

Returns:list
get_network_data()[source]

Extract relevant information about this network in order to inject into a Jinja2 template.

Returns:
nodes (list), edges (list), height (
string), width (string), options (object)

Usage:

>>> nodes, edges, heading, height, width, options = net.get_network_data()
get_node(n_id)[source]

Lookup node by ID and return it.

Parameters:n_id – The ID given to the node.
Returns:dict containing node properties
get_nodes()[source]

This method returns an iterable list of node ids

Returns:list
hrepulsion(node_distance=120, central_gravity=0.0, spring_length=100, spring_strength=0.01, damping=0.09)[source]

This model is based on the repulsion solver but the levels are taken into account and the forces are normalized.

Parameters:
  • node_distance (int) – This is the range of influence for the repulsion.
  • central_gravity – The gravity attractor to pull the entire network to the center.
  • spring_length – The rest length of the edges
  • spring_strength – The strong the edges springs are
  • damping – A value ranging from 0 to 1 of how much of the velocity from the previous physics simulation iteration carries over to the next iteration.

:type central_gravity float :type spring_length: int :type spring_strength: float :type damping: float

inherit_edge_colors(status)[source]

Edges take on the color of the node they are coming from.

Parameters:status (bool) – True if edges should adopt color coming from.
neighbors(node)[source]

Given a node id, return the set of neighbors of this particular node.

Parameters:node (str or int) – The node to get the neighbors from
Returns:set
num_edges()[source]

Return number of edges

Returns:int
num_nodes()[source]

Return number of nodes

Returns:int
prep_notebook(custom_template=False, custom_template_path=None)[source]

Loads the template data into the template attribute of the network. This should be done in a jupyter notebook environment before showing the network.

Example:
>>> net.prep_notebook()
>>> net.show("nb.html")
Parameters:path (string) – the relative path pointing to a template html file
repulsion(node_distance=100, central_gravity=0.2, spring_length=200, spring_strength=0.05, damping=0.09)[source]

Set the physics attribute of the entire network to repulsion. When called, it sets the solver attribute of physics to repulsion.

Parameters:
  • node_distance (int) – This is the range of influence for the repulsion.
  • central_gravity – The gravity attractor to pull the entire network to the center.
  • spring_length – The rest length of the edges
  • spring_strength – The strong the edges springs are
  • damping – A value ranging from 0 to 1 of how much of the velocity from the previous physics simulation iteration carries over to the next iteration.

:type central_gravity float :type spring_length: int :type spring_strength: float :type damping: float

save_graph(name)[source]

Save the graph as html in the current directory with name.

Parameters:name (str) – the name of the html file to save as
set_edge_smooth(smooth_type)[source]

Sets the smooth.type attribute of the edges.

Parameters:smooth_type (string) – Possible options: ‘dynamic’, ‘continuous’, ‘discrete’, ‘diagonalCross’, ‘straightCross’, ‘horizontal’, ‘vertical’, ‘curvedCW’, ‘curvedCCW’, ‘cubicBezier’. When using dynamic, the edges will have an invisible support node guiding the shape. This node is part of the physics simulation. Default is set to continous.
set_options(options)[source]

Overrides the default options object passed to the VisJS framework. Delegates to the options.Options.set() routine.

Parameters:options (str) – The string representation of the Javascript-like object to be used to override default options.
set_template(path_to_template: str)[source]

Path to full template assumes that it exists inside of a template directory. Use set_template_dir to set the relative template path to the template directory along with the directory location itself to change both values otherwise this function will infer the results. :path_to_template path: full os path string value of the template directory

set_template_dir(template_directory, template_file='template.html')[source]

Path to template directory along with the location of the template file. :template_directory path: template directory :template_file path: name of the template file that is going to be used to generate the html doc.

show(name, local=True, notebook=True)[source]

Writes a static HTML file and saves it locally before opening.

Param:name: the name of the html file to save as
show_buttons(filter_=None)[source]

Displays or hides certain widgets to dynamically modify the network.

Usage: >>> g.show_buttons(filter_=[‘nodes’, ‘edges’, ‘physics’])

Or to show all options: >>> g.show_buttons()

Parameters:
  • status (bool) – When set to True, the widgets will be shown. Default is set to False.
  • filter (bool or list:) –

    Only include widgets specified by filter_. Valid options: True (gives all widgets)

    List of nodes, edges, layout, interaction, manipulation, physics, selection, renderer.
toggle_drag_nodes(status)[source]

Toggles the dragging of the nodes in the network.

Parameters:status (bool) – When set to True, the nodes can be dragged around in the network. Default is set to True.
toggle_hide_edges_on_drag(status)[source]

Displays or hides edges while dragging the network. This makes panning of the network easy.

Parameters:status (bool) – True if edges should be hidden on drag
toggle_hide_nodes_on_drag(status)[source]

Displays or hides nodes while dragging the network. This makes panning of the network easy.

Parameters:status (bool) – When set to True, the nodes will hide on drag. Default is set to False.
toggle_physics(status)[source]

Toggles physics simulation

Parameters:status (bool) – When False, nodes are not part of the physics simulation. They will not move except for from manual dragging. Default is set to True.
toggle_stabilization(status)[source]

Toggles the stablization of the network.

Parameters:status (bool) – Default is set to True.
write_html(name, local=True, notebook=False, open_browser=False)[source]

This method gets the data structures supporting the nodes, edges, and options and updates the template to write the HTML holding the visualization.

To work with the old local methods local is being depricated, but not removed. :type name_html: str @param name: name of the file to save the graph as. @param local: Depricated parameter. Used to be used to determine how the graph needs deploy. Has been removed in favor of using the class cdn_resources instead. @param notebook: If true, this object will return the iframe document for use in juptyer notebook. @param open_browser: If true, will open a web browser with the generated graph.

class pyvis.options.Configure(enabled=False, filter_=None)[source]

Handles the HTML part of the canvas and generates an interactive option editor with filtering.

class pyvis.options.EdgeOptions[source]

This is where the construction of the edges’ options takes place. So far, the edge smoothness can be switched through this object as well as the edge color’s inheritance.

class Color[source]

The color object contains the color information of the edge in every situation. When the edge only needs a single color value like ‘rgb(120,32,14)’, ‘#ffffff’ or ‘red’ can be supplied instead of an object.

class Smooth[source]

When the edges are made to be smooth, the edges are drawn as a dynamic quadratic bezier curve. The drawing of these curves takes longer than that of the straight curves but it looks better. There is a difference between dynamic smooth curves and static smooth curves. The dynamic smooth curves have an invisible support node that takes part in the physics simulation. If there are a lot of edges, another kind of smooth than dynamic would be better for performance.

inherit_colors(status)[source]

Whether or not to inherit colors from the source node. If this is set to from then the edge will take the color of the source node. If it is set to to then the color will be that of the destination node.

Note

If set to True then the from behavior is adopted and vice versa.

toggle_smoothness(smooth_type)[source]

Change smooth option for edges. When using dynamic, the edges will have an invisible support node guiding the shape. This node is part of the physics simulation,

Parameters:smooth_type (str) – Possible options are dynamic, continuous, discrete, diagonalCross, straightCross, horizontal, vertical, curvedCW, curvedCCW, cubicBezier
class pyvis.options.Interaction[source]

Used for all user interaction with the network. Handles mouse and touch events as well as the navigation buttons and the popups.

class pyvis.options.Layout(randomSeed=None, improvedLayout=True)[source]

Acts as the camera that looks on the canvas. Does the animation, zooming and focusing.

set_edge_minimization(status)[source]

Method for reducing whitespace. Can be used alone or together with block shifting. Enabling block shifting will usually speed up the layout process. Each node will try to move along its free axis to reduce the total length of it’s edges. This is mainly for the initial layout. If you enable physics, they layout will be determined by the physics. This will greatly speed up the stabilization time

set_separation(distance)[source]

The distance between the different levels.

set_tree_spacing(distance)[source]

Distance between different trees (independent networks). This is only for the initial layout. If you enable physics, the repulsion model will denote the distance between the trees.

class pyvis.options.Options(layout=None)[source]

Represents the global options of the network. This object consists of indiviual sub-objects that map to VisJS’s modules of:

  • configure
  • layout
  • interaction
  • physics
  • edges

The JSON representation of this object is directly passed in to the VisJS framework. In the future this can be expanded to completely mimic the structure VisJS can expect.

set(new_options)[source]

This method should accept a JSON string and replace its internal options structure with the given argument after parsing it. In practice, this method should be called after using the browser to experiment with different physics and layout options, using the generated JSON options structure that is spit out from the front end to serve as input to this method as a string.

Parameters:new_options (str) – The JSON like string of the options that will override.