Python Forum
Beginning of Beginner Help: Should I start with Python?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Beginning of Beginner Help: Should I start with Python?
#2
Sure, you could do that in python.

For storing the data, you'd want a database. The easy answer is sqlite, which python supports out of the box: https://docs.python.org/3/library/sqlite3.html

For the interface, you can build a gui (TKinter is built in, but not pretty: https://docs.python.org/3/library/tkinter.html), or you could build a small website using something like Flask (which is NOT builtin, but easily installed via pip: http://flask.pocoo.org/).

For generating a report based off the database's contents, you could either build it yourself (outputting as html would be pretty simple, and most browsers can save that as a pdf if needed), or there's probably tools out there to just do it for you based on the database contents.
Reply


Messages In This Thread
RE: Beginning of Beginner Help: Should I start with Python? - by nilamo - Jul-23-2018, 06:07 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Just beginning dalekeel 2 329 Apr-15-2024, 11:49 AM
Last Post: Pedroski55
  Program doesnt return beginning bilisim19 2 981 Feb-15-2023, 06:23 PM
Last Post: Larz60+
  Start Putty into Python Form Schlazen 5 5,602 Dec-13-2022, 06:28 AM
Last Post: divya130
  Python Idle won't start totalmachine 9 3,650 Oct-16-2022, 05:57 PM
Last Post: totalmachine
  readline.parse_and_bind() does not work in start-up script of Python interpreter zzzhhh 0 1,591 Jan-18-2022, 11:05 AM
Last Post: zzzhhh
  List of dataframe values beginning with x,y or z glidecode 3 1,992 Nov-08-2021, 10:16 PM
Last Post: glidecode
  How to start the program from the beginning. iamaghost 5 3,044 Feb-23-2021, 03:40 AM
Last Post: deanhystad
  Use Python to start/stop a server service via a webform? oakleaf2001 0 1,791 Apr-04-2020, 06:14 AM
Last Post: oakleaf2001
  Python 3.8 on mac failing to start sgandon 0 2,957 Jan-14-2020, 10:58 AM
Last Post: sgandon
  Python start from a specific string line and write? searching1 1 2,254 Jun-27-2019, 02:28 PM
Last Post: perfringo

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020