Skip to main content

bubble-tools

python routines related to bubble format, usable in CLI or as a library.

Installation

pip install bubbletools

See below for usage.

Features

  • bubble to python
  • bubble to gexf
  • bubble to cytoscape.js
    • working implementation
    • test on fully valid bubble
    • unit testing
    • test on big graphs, for benchmarking (will probably not scale)
  • bubble to dot (via graphviz)
    • working implementation
    • test on fully valid bubble
    • unit testing
    • test on big graphs, for benchmarking (will probably not scale)
  • python to bubble
  • dot to python
  • unit testing on bubble describing cliques

CLI

bubbletools is usable through CLI.

validation

usage:

python3 -m bubbletools validate path/to/bubble/file

Try hard to find errors and inconsistancies in the given bubble file

Spot powernode overlapping, inclusions inconsistancies and empty or singleton powernodes. Profiling gives general informations about the file data.

conversion to dot

usage:

python3 bubbletool.py dot path/to/bubble/file path/to/output/file

Convert given bubble file in dot format. The optional --render flag can be used to show the graph after saving.

Same API is available for gexf format.

conversion to cytoscape.js

usage:

python3 -m bubbletools js path/to/bubble/file path/to/output/dir

Convert given bubble file in a fully working website using cytoscape.js to render the graph. The optional --render flag can be used to run the default web browser on the generated website. See Makefile recipe js for a usage example.

A website is a collection of files (css, js, html), with only one of them (js/graph.js) that changes according to the input data.

If the path/to/output/dir has a .js extension, only the js/graph.js file will be generated. This allow one to generates only the changing parts, not the full website each time. See Makefile recipe js-per-file for a usage example.

python API

Submodules validator and converter provides the functionnalities described above for CLI:

from bubbletools import validate, convert

for log in validate(open('path/to/bubble.lp'), profiling=True):
    print(log)
convert.to_dot(open('path/to/bubble.lp'), dotfile='path/to/dot.dot')

python representation of the graph

A lower level interface is the BubbleTree object, allowing one to manipulate the graph depicted by bubble data as python object. See unit tests for example of BubbleTree usage.

from bubbletools import BubbleTree

tree = BubbleTree.from_bubble_file('path/to/bubble.lp')
print(tree.edges, tree.inclusions, tree.roots)

edges is a mapping predecessor -> set of successors, inclusions is a mapping (power)node -> set of (power)nodes directly contained, and roots is a set of (power)nodes that are contained by nothing.

This representation holds all the data necessary for most work on the bubble. The BubbleTree.connected_components function maps a graph with its connected components:

cc, subroots = BubbleTree.connected_components()

Where cc and subroots are both mappings, respectively linking the root of a connected component with all nodes of the connected component, and the root of a connected component with the other roots of the same connected component. Thus, connected components are identified by one of their roots, which is key is both dictionaries.

access powernodes and their data

Follow an example of BubbleTree usage, retrieving data on powernodes:

tree = BubbleTree.from_bubble_file('bubbles/basic.bbl')
for pnode in tree.powernodes:
    data = tree.powernode_data(pnode)
    print(
        "{} contains nodes {{{}}}, and powernodes {{{}}}."
        "".format(pnode, data.contained_nodes, data.contained_pnodes)
    )

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bubbletools-0.6.13.tar.gz (161.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

bubbletools-0.6.13-py3-none-any.whl (165.3 kB view details)

Uploaded Python 3

File details

Details for the file bubbletools-0.6.13.tar.gz.

File metadata

  • Download URL: bubbletools-0.6.13.tar.gz
  • Upload date:
  • Size: 161.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for bubbletools-0.6.13.tar.gz
Algorithm Hash digest
SHA256 5ec85a07f261bfa8c44954d869c2c446d87b9728f6a4da7771e85607033f2eaa
MD5 9a4d355b5c60989a7281c124a6bb025a
BLAKE2b-256 ae08c6ee97e3d8fcfa1045838d61018c1431dc79999eb61f7187586c5a95c7cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for bubbletools-0.6.13.tar.gz:

Publisher: python-publish.yml on Aluriak/bubble-tools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bubbletools-0.6.13-py3-none-any.whl.

File metadata

  • Download URL: bubbletools-0.6.13-py3-none-any.whl
  • Upload date:
  • Size: 165.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for bubbletools-0.6.13-py3-none-any.whl
Algorithm Hash digest
SHA256 197f99ae1a08814be8dbf5a266c1ff04ed5677357033c3c5135c023cbb166061
MD5 655522c40e8ae650f10c658dea9b1244
BLAKE2b-256 87ab7b9da0bedb1d64c32d465e1189a8e44b61d5309ad73971fc9992acb701c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for bubbletools-0.6.13-py3-none-any.whl:

Publisher: python-publish.yml on Aluriak/bubble-tools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page