![]() |
How to create such software? - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: How to create such software? (/thread-13436.html) |
How to create such software? - AliSaleh - Oct-15-2018 Hello, I am new to Python ![]() I want to create same functions, insert a rectangle and then drop a frame, glass, etc. So, which tools and libraries should I use. Thank you ![]() ![]() RE: How to create such software? - Larz60+ - Oct-15-2018 Road Map:
RE: How to create such software? - AliSaleh - Oct-16-2018 Thank you Larz60+ for your help ![]() I have some questions, could I create such that software as a web app using django or another framework? I found an android app which has the same functions I want, could this app help me? https://youtu.be/g_gXlWw11c8 Thank you. RE: How to create such software? - nilamo - Oct-16-2018 (Oct-16-2018, 09:22 PM)AliSaleh Wrote: could I create... a web app using django or another framework (Oct-16-2018, 09:22 PM)AliSaleh Wrote: I found an android app... Your first step is figuring out what you want to do. A web app and a mobile app are not the same things. Yes, you could use a web framework to do pretty much anything. And yes, you could use an Android framework to do pretty much anything. But it doesn't make sense to use both at the same time. RE: How to create such software? - AliSaleh - Oct-16-2018 Thank you nilamo, maybe I haven't explained my point well. I mean that could the source code of the android app help me to build a web app using python. Thanks again. RE: How to create such software? - nilamo - Oct-17-2018 The structure could help, if you want to see how to organize your code. But the actual code wouldn't help, since it wouldn't be python. RE: How to create such software? - AliSaleh - Oct-18-2018 Thank you nilamo. |