The quadrature schemes are handled by FFC. For a given shape, degree and scheme you can get the points and weights as follows:
from ffc.quadrature_schemes import create_quadrature
shape = "tetrahedron"
degree = 2
scheme="default"
(points, weights) = create_quadrature(shape, degree, scheme)