pip install visvis
python
import visvis as vv
fig = vv.figure()
line = vv.plot([0, 1, 2, 3], [0, 1, 0, 1])
vv.title('My First visvis Graph')
vv.xlabel('X')
vv.ylabel('Y')
fig.show()
vv.process()
python
fig = vv.figure()
sphere = vv.solidSphere(pos=(0, 0, 0), radius=1, color='r')
light = vv.solidLight((1, 1, 1), (0, 0, 0), ambient=0.3, diffuse=1.0)
vv.title('My First visvis 3D Graph')
fig.show()
vv.process()