You're looking for an abdominal soft tissue window. Typical values can be found here. If you need a function to window your array data, try this:
import numpy as np
import skimage.exposure
def window(data: np.ndarray, lower: float = -125., upper: float = 225., dtype: str = 'float32') -> np.ndarray:
    """ Scales the data between 0..1 based on a window with lower and upper limits as specified. dtype must be a float type.
    Default is a soft tissue window ([-125, 225] ≙ W 350, L50).
    See https://radiopaedia.org/articles/windowing-ct for common width (WW) and center/level (WL) parameters.
    """
    assert 'float' in dtype, 'dtype must be a float type'
    clipped = np.clip(data, lower, upper).astype(dtype)
    # (do not use in_range='image', since this does not yield the desired result if the min/max values do not reach lower/upper)
    return skimage.exposure.rescale_intensity(clipped, in_range=(lower, upper), out_range=(0., 1.))