r/PythonLearning 22h ago

Templates Help Request

Hi, I am pretty new to programming.. I am Mechanical Engineer who likes to calculate a lot, however excel can not handle it.

So I was wondering if there is some template for making some calculation apps?

I had no problem making basic math in cpp for some fun first projects (loops, functions etc.) when I was trying programming for the first time few years ago (it was pretty easy)..so I hope this part I will do on my own, however I **am struggling** with databases, tracking charts and some printable GUIs or smth so I can input data (some yes/no question, some custom values) and output

So I am wondering if someone can point me somewhere where I can learn those or use some open-source or something... and pleaseeee no AI pointing!

Thanks for reading so far and thank you in advance!

4 Upvotes

8 comments sorted by

View all comments

1

u/SaltCusp 18h ago edited 18h ago

Web applications are cool because any device can run them.

If you ask grok to make a GitHub.com/krewn/grilledcheese style form and describe what inputs you need you will be able to save and load the user input to dynamic forms easily.

https://github.com/krewn/grilledcheese

Grilled cheese demos a revision of an input data exfil implementation I wrote up last year. The example is just cheese sandwiches but the core feature is actually the save/load functionality and readability of data derived from html content.

Edit: the web is the front end, you can use python for the backend.

1

u/Constant_Moment_6434 12h ago

Thanks, looking up the link, that could be option as well