-
Notifications
You must be signed in to change notification settings - Fork 1
Useful stuff ?
Fabrice edited this page Feb 24, 2023
·
71 revisions
- https://stackoverflow.com/questions/7546050/switch-between-two-frames-in-tkinter/7557028#7557028: advices on tkinter
- https://stackoverflow.com/questions/7782425/tkinter-and-gui-programming-methods: shows an example of Model-View
- https://github.com/tecladocode/gui-development-tkinter-course to be checked
- https://github.com/Miraj50/Awesome-Tkinter-Apps to be checked
- https://github.com/PacktPublishing/Tkinter-GUI-Application-Development-Blueprints-Second-Edition to be checked
- https://github.com/PacktPublishing/Tkinter-GUI-Application-Development-Cookbook to be checked
- https://github.com/PacktPublishing/Python-GUI-Programming-with-Tkinter-2E to be checked
- https://www.delftstack.com/fr/tutorial/tkinter-tutorial/tkinter-combobox/: ttk combobox
- https://github.com/PacktPublishing/Tkinter-GUI-Application-Development-Cookbook
- https://github.com/dmnfarrell/pandastable: complex GUI
- https://bitbucket.org/zunzuncode/tkinterfit/src/master/
- https://gitlab.com/ilya.dubovitsky/function-approximation-methods: see update of graph.
- https://matplotlib.org/gallery/user_interfaces/embedding_in_tk_sgskip.html
- https://stackoverflow.com/questions/3221956/how-do-i-display-tooltips-in-tkinter check Eric Bethke's proposal corrected by Sandeep SD.
- https://stackoverflow.com/questions/16115378/tkinter-example-code-for-multiple-windows-why-wont-buttons-load-correctly different GUI parts in different classes.
- https://stackoverflow.com/questions/17466561/best-way-to-structure-a-tkinter-application check Bryan Oakley's answer to create one class for each GUI area.
- https://python-patterns.guide/gang-of-four/composition-over-inheritance/ high level
- https://realpython.com/inheritance-composition-python/
- https://python.developpez.com/tutoriels/composition-programmes/abstraction-donnees/
- https://matplotlib.org/users/event_handling.html?highlight=tkinter : event handling
- https://leanpub.com/openintro-statistics
- https://www.freecodecamp.org/news/what-is-a-proxy-server-in-english-please/
- https://stackoverflow.com/questions/20618804/how-to-smooth-a-curve-in-the-right-way
- https://stackoverflow.com/questions/28855928/python-smoothing-data/28857249
- https://www.delftstack.com/howto/python/smooth-data-in-python/ very interesting source
- https://stackoverflow.com/questions/20618804/how-to-smooth-a-curve-in-the-right-way plenty of proposals to study
- https://www.geeksforgeeks.org/how-to-calculate-moving-averages-in-python/ pandas moving range
- https://www.statology.org/moving-average-python/ pandas moving range
- https://stackoverflow.com/questions/14313510/how-to-calculate-rolling-moving-average-using-python-numpy-scipy moving average
- https://www.ikigailabs.io/multivariate-time-series-forecasting-python/python-moving-average-numpy moving average
- https://towardsdatascience.com/how-to-code-different-types-of-moving-averages-in-python-4f8ed6d2416f moving average
- https://www.mikulskibartosz.name/smoothing-time-series-in-pandas/ filtering time series
- https://gist.github.com/RamonWill/0686bd8c793e2e755761a8f20a42c762 and https://www.youtube.com/watch?v=PgLjwl6Br0k
- https://docs.python.org/3/library/configparser.html: documentation
- https://stackoverflow.com/questions/8884188/how-to-read-and-write-ini-file-with-python3: example
- https://www.quora.com/How-does-the-Python-CSV-Sniffer-work explanation of sniffer
- https://www.programiz.com/python-programming/reading-csv-files Print the result of sniffer (dialect) after attempting to read the CSV.