I'm working on a project with Python and SQL but i really need some ideas right now.
I use Python to scrap some information from websites and save them on my SQL. After that, I have to take a few rows from this SQL using a filter and do some math with them (like taking the mean, applying weights, creating a score...) and dispose them on a graph or a table.
My problem is: I can do this on python, but I need to make this available on my website (people should choose the filters they want and then all the math is done behind the scene).
Do you guys have any idea how I could do it? Is it possible to be done only with Python?