Python version of the BallMapper algorithm described in arXiv:1901.07410 .

pip install pyballmapper
from pyballmapper import BallMapper
bm = BallMapper(X = my_pointcloud, # the pointcloud, as a array-like of shape (n_samples, n_features)
eps = 4.669) # the radius of the covering balls
For more info check out the example notebooks or the documentation.