Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Alright so I am not big brain. Can someone give me a tutorial or recommend one? I've heard tkinter is good, so maybe use that? I don't know please help me.
See GuiProgramming in the official wiki which shows a HUGE amount of frameworks in categories such as:
cross-browser
cross-platform
platform-specific
and other from which most of the known ones I'd say are PyJamas, PyGame, PyQt, Kivy, Tkinter and wxPython
This might help you out: https://www.youtube.com/watch?v=-GhzpvvIXlM
It is a simple tutorial that explains how to make a GUI. It uses Tkinter.
You can use Tkinter or Guizero to create GUIs using Python
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I I just want to build a simple GUI (like button, scale changing parameter values) to update matplotlib plot using python. Which package is easier for me to use? TKinter, PyQt5, wxPython, etc??? I am not a software developer. I am an engineer. Just use python for data analysis and plotting. I like to have a simple gui to changing parameter values to update plot.
I am thinking if tkinter would be best? I came across the following example. It is pretty easier. Any suggestion would be appreciated.
Embed a pyplot in a tkinter window and update it
Thanks
Well if you are working on small projects then you should use Tkinter as it is easy use and user friendly but when you working on big projects then you need to use PyQt5 as it will give you lots of functionalities and it is easier to use too.
Believe it takes very less time to understand this library in python.
For learning purpose you can visit pdfdrive.com and download your free eBooks.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
After reading and learning from online tutorials. I now know the fundamentals of python. However I am tired of just making interactive text-based program. I want an interface for my program, to be specific I want a graphical user interface for my program. How can I make this possible?
What you are looking for is a GUI (Graphical User Interface). You can check the list of GUI's available for Python here, along with their commentary. You can pick whichever you feel is the closest to what you want, and start learning by reading their documentaries and practicing.
You can use Tkinter or pygtk using glade which I recommend. Check this http://www.pygtk.org/tutorial.html
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Where can one find a manual to Quickly, where it is written about using (=programming, how to connect widgets in PreferencesDialogWindow with preferences, and how to use them in the application) application preferences? Official tutorial (both in "quickly tutorial" and here) tells nothing about it, although it is a very important aspect (they both are very short in general...).
(I mean the standard ubuntu-application template)
I tried to ask it on AskUbuntu, but didn't get an answer, so I hope to get a response here.
Maybe it would be easier for someone to just tell how it works, than point out a guide, in this case you are welcome!
I think Quickly's documentation should have what you're looking for. If not, maybe you'll find it in this tutorial.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I am intersted in building some text based GUIs, things that look like the terminal, but has functions like selecting rows and performing actions.
You know, things like htop and atop, ex:
Any resource on that?
You need Uwrid - a console user interface library for Python.
Documentation available on the website.
There is also Curses, which is in the Python standard library.
don't miss http://pythondialog.sourceforge.net/ also
Also, the library panwid offers a data table widget for Urwid, which does a lot of the heavy-lifting for an htop-like interface.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am in need of making an interface for Automata Construction. For those who are unaware of what an automata is, I basically need circles and arrows, extending them on the user interface and then various text to describe it. For example :- http://en.wikipedia.org/wiki/File:DFAexample.svg
I was wondering if there is any advanced library in Python which could let me do all of this. Please give me suggestions. I plan to use lots of internal frames and showing parsing of strings diagramatically . I had planned to use jython to use the swing libraries but I would like to know if there any other suggestions that I can use.
I've used PyQt4 to produce something like this:
http://doc.qt.nokia.com/4.6/graphicsview-diagramscene.html
which is the C++ version. Draw boxes, draw arrows, drag them around and so forth. Actually I think I pretty much ported the C++ version line-by-line to Python. Or someone else did.
PySide (Qt), WxPython, PyGtk
I looked at your picture and have another one idea - you can use graphviz and pydot.