Benutzer-Werkzeuge

Webseiten-Werkzeuge


prog:python

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen RevisionVorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
prog:python [2019/12/26 08:13] – [Wiki-Links] adminprog:python [2024/06/06 07:27] (aktuell) – [Python-Dokumentation] admin
Zeile 1: Zeile 1:
 ====== Python ====== ====== Python ======
 +
 +===== Wiki-Links =====
 +  * [[prog:python:language|Python Sprachkonstrukte (Klassen, Definitionen, Threads, etc.)]]
 +  * [[prog:python:networking|Python Network Code]]
 +  * [[prog:python:gaming|Python Game-Design mit Ren'Py]]
 +  * [[prog:python:grafik|Grafikbibliotheken für Python]]
 +  * [[prog:python:pip|Tips zu pip]]
 +  * [[prog:python:jupyter|Jupyter]]
 +  * [[prog:python:unittest|Unit-Tests in Python]]
 +  * [[prog:python:videos|Youtube-Videos über Python]]
  
 ===== Python-Dokumentation ===== ===== Python-Dokumentation =====
Zeile 7: Zeile 17:
   * [[https://www.w3schools.com/python/python_intro.asp|w3schools]] (Sprachelemente kurz erklärt)   * [[https://www.w3schools.com/python/python_intro.asp|w3schools]] (Sprachelemente kurz erklärt)
   * [[https://realpython.com|Real Python Tutorials]] (umfassende und gute Tutorials)   * [[https://realpython.com|Real Python Tutorials]] (umfassende und gute Tutorials)
-  * [[http://rgruet.free.fr/PQR26/PQR2.6.html|Python 2.6 Quick Reference]] +  * [[https://www.youtube.com/watch?v=rfscVS0vtbw|Lerne Python - Youtube Kurs für Anfänger]] 
 + 
 + 
 +  * [[http://rgruet.free.fr/PQR26/PQR2.6.html|Python 2.6 Quick Reference(leider nicht mehr aktuell!)]] 
  
 https://www.python.org/shell/ für die kurze Coding-Session unterwegs... https://www.python.org/shell/ für die kurze Coding-Session unterwegs...
Zeile 19: Zeile 32:
   * https://engineering.ucsb.edu/~shell/che210d/numpy.pdf   * https://engineering.ucsb.edu/~shell/che210d/numpy.pdf
  
-===== Wiki-Links ===== +
-  * [[prog:python:language|Python Sprachkonstrukte (Klassen, Definitionen, etc.)]] +
-  * [[prog:python:networking|Python Network Code]] +
-  * [[prog:python:grafik|Grafikbibliotheken für Python]] +
-  * [[prog:python:pip|Tips zu pip]] +
-  * [[prog:python:jupyter|Jupyter]] +
-  * [[prog:python:unittest|Unit-Tests in Python]]+
 ===== Allgemein: ===== ===== Allgemein: =====
  
Zeile 35: Zeile 42:
 ==== Editor/IDE: ==== ==== Editor/IDE: ====
   * http://thonny.org   * http://thonny.org
 +    * [[https://randomnerdtutorials.com/getting-started-thonny-micropython-python-ide-esp32-esp8266/|Getting Started with Thonny MicroPython (Python) IDE for ESP32 and ESP8266]]
   * [[https://www.youtube.com/watch?v=lBkcDFRA958|IDLE (Video)]]   * [[https://www.youtube.com/watch?v=lBkcDFRA958|IDLE (Video)]]
  
Zeile 44: Zeile 52:
   * [[http://www.scribd.com/doc/39946630/Python-Idioms|New Python Idioms]]   * [[http://www.scribd.com/doc/39946630/Python-Idioms|New Python Idioms]]
   * [[https://eli.thegreenplace.net/2017/interacting-with-a-long-running-child-process-in-python/|Interacting with a long-running child process in Python]]   * [[https://eli.thegreenplace.net/2017/interacting-with-a-long-running-child-process-in-python/|Interacting with a long-running child process in Python]]
 +  * [[https://stackoverflow.com/questions/107705/disable-output-buffering|Disable output buffering]] 
 +  * [[https://stackoverflow.com/questions/281133/how-to-control-the-mouse-in-mac-using-python|How to control the mouse in Mac using Python]]
  
 ==== virtualenv (virtenv) ==== ==== virtualenv (virtenv) ====
Zeile 56: Zeile 66:
  
  
-==== Unit-Tests ==== +==== Bild-Mustererkennung mit OpenCV ==== 
- +  * [[https://www.youtube.com/watch?v=WQeoO7MI0Bs|LEARN OPENCV in 3 HOURS with Python | Including 3x Example Projects (2020)]] 
-  * https://code.tutsplus.com/tutorials/write-professional-unit-tests-in-python--cms-25835 +  * [[https://stackoverflow.com/questions/28327020/opencv-detect-mouse-position-clicking-over-a-picture|Opencv: detect mouse position clicking over a picture]] 
-  * https://medium.com/@rinu.gour123/unit-testing-with-python-unittest-ad045671010+  * https://colab.research.google.com/github/xn2333/OpenCV/blob/master/Image_Processing_in_Python_Final.ipynb
  
 +==== Machine Learning ====
 +  * [[prog:ml:start|Machine Learning]]
  
 === LXML === === LXML ===
   * [[http://stackoverflow.com/questions/34224854/add-multiple-elements-to-xml-with-lxml|add-multiple-elements-to-xml-with-lxml]]   * [[http://stackoverflow.com/questions/34224854/add-multiple-elements-to-xml-with-lxml|add-multiple-elements-to-xml-with-lxml]]
  
-=== Dynamic code ===+=== Python-Tipps === 
 + 
 +  * [[prog:python:tipps|Python-Tipps & Tricks]] 
 + 
 +==== Dynamic code ====
   * http://stackoverflow.com/questions/1143833/how-do-you-add-a-model-method-to-an-existing-class-within-an-interactive-session   * http://stackoverflow.com/questions/1143833/how-do-you-add-a-model-method-to-an-existing-class-within-an-interactive-session
   * http://stackoverflow.com/questions/3061/calling-a-function-of-a-module-from-a-string-with-the-functions-name-in-python   * http://stackoverflow.com/questions/3061/calling-a-function-of-a-module-from-a-string-with-the-functions-name-in-python
Zeile 78: Zeile 94:
   * http://stackoverflow.com/questions/25828184/fitting-to-poisson-histogram   * http://stackoverflow.com/questions/25828184/fitting-to-poisson-histogram
  
-=== Rekursion === 
  
-  * [[http://stackoverflow.com/questions/12399259/finding-the-level-of-recursion-call-in-python|finding-the-level-of-recursion-call]] 
  
  
prog/python.1577347990.txt.gz · Zuletzt geändert: 2019/12/26 08:13 von admin