A data inspection package: dataray

Recently, I make a small release with my first open source package dataray. The motivation of this project is from my daily work. I find json data is inevitable in data engineering work. For a tedious json response, we may find it hard to see the structure of the json even if we put a response in an online json formatter. So there comes my first feature of this data inspection package, logging out the json structure when the users call a function returning json data. The usage is simple,

# after run `pip install dataray`

from dataray import dataray

@dataray.ray()
def request_func():
    ...

Later on, I will continuous adding new features to help people inspect a json response easily. My next goal is enable json path query to find a specific set of fields for the response, stay tuned and welcome new issue and the contribution.