Using Python in NeoDash

Currently I have a dashbaord running on a different python dashboarding platform. My data is stored in a Neo4j database, and I am using the Neo4j Python driver to connect to my database. I am able to query for data this way and then manipulate it to display as various visualizations on my dashboard. I want to get this same functionality in NeoDash. Is there a way I can create a dashboard on NeoDash while also using Python to make the dashbaord look more aesthetically pleasing, in addition to being able to pull in data from external API's. For example, I have an API that when I call in Python, returns a json of all sports games going on for that day along with information for these games. I then use Python to parse the data, and to send the data into my Neo4j database. This process is usually done automatically each time I load up the dashbaord. I am having trouble creating this functionality through neodash. How can I go about this? Thanks.