Is possible make a program for a little store with Python? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

Is possible make a program for a little store with Python?

Hey, I new in Python and i would like set a goal. I need a program to charge in a little store. Could you tell me if it is possible and how?

10th May 2023, 6:36 AM
Estephania
Estephania - avatar
6 Respostas
+ 6
Estephania , from my point of view, also a graphical user interface for an application is mandatory.
10th May 2023, 9:37 AM
Lothar
Lothar - avatar
+ 3
Do you mean a database? That can be achieved with sqlite Official documentation: https://docs.python.org/3/library/sqlite3.html
10th May 2023, 6:53 AM
Ugulberto SƔnchez
Ugulberto SƔnchez - avatar
+ 3
Estephania You should search for POS application https://m.youtube.com/watch?v=8u58O85fGJ0
10th May 2023, 9:45 AM
Bob_Li
Bob_Li - avatar
+ 2
You should use a POS system. There are many tutorials on YouTube which tells you how to create a POS system in Python. Here are some of them: https://www.youtube.com/watch?v=ycBg1kP8wcU https://www.youtube.com/watch?v=BZQwtRWIloQ https://www.youtube.com/watch?v=EzQD3SShiLk Please note that you need to create a database as well, where you need to save all your sales, stocks, and where you can analyse data. As Ugulberto said, this can be done with sqlite. You can use other database building tools, such as mysql, or Oracle RDBMS. You can use Access as well, if you have a really small business, but that is not recommended, as it is a bit hard to set up.
10th May 2023, 10:37 AM
Danish Zubair
Danish Zubair - avatar
0
Jun, the short answer.. Yes.. you can do... You can create a tiny prototype with some articles, prices and codes.. with these information you can play with your little store.. if you create your program modular form, you can combine database and python to develop a great store.. So, yes, you can do.. and good luck.. I wish you succesful.. n.n
11th May 2023, 4:26 PM
Jesus Osvaldo Sandoval Solis
Jesus Osvaldo Sandoval Solis - avatar
0
Hey an welcomešŸ™‚ first off you can build ALL kind of software with python. Mobile, desktop, AI, games just all. Well to store persistent data you can easy write your python dictionarys to a json file with the build in pythonpackage JSON. Sure for more security and advanced data storing a sql database is possible too. With the Flask package you can write a backend easy and host it as web app on a server. If you already need a bit of advice let me know. I use python daily on Linux, windows, android for all kind of stuff so iam pretty sure i can help you. Just pm me. Happy coding āœŒļø
12th May 2023, 5:00 AM
S3R43o3
S3R43o3 - avatar