Python Forum
Graph with GUi - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: GUI (https://python-forum.io/forum-10.html)
+--- Thread: Graph with GUi (/thread-22549.html)



Graph with GUi - teodorisss - Nov-17-2019

I want to implement a GUI in which the user will give vertexes and their neighbors and step by step a graph (G) will be created!! After that i would like to run on it a graph algorithm (etc BFS).

Which Python framework are you suggested me to use for better and easier use ?

Thanks in advance for all the answers !!!!


RE: Graph with GUi - Larz60+ - Nov-17-2019

you should study numpy: https://numpy.org/
and
matplotlib: https://matplotlib.org/


RE: Graph with GUi - Denni - Nov-18-2019

or pyqtgraph is another possibility