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/10/27 08:37] – [pip auf OSX installieren:] 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]] 
  
 ===== Allgemein: ===== ===== Allgemein: =====
Zeile 33: 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 41: Zeile 51:
   * [[http://py2exe.org/|py2exe]] packt Python Skripte zu einer Windows-Anwendung (vielleicht für die GUI interessant um mehr Nutzer anzusprechen?)   * [[http://py2exe.org/|py2exe]] packt Python Skripte zu einer Windows-Anwendung (vielleicht für die GUI interessant um mehr Nutzer anzusprechen?)
   * [[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://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 52: Zeile 65:
 </code> </code>
  
-==== Abhängigkeiten aus einer Requirements-Datei installieren ==== 
  
-  *<code bash>pip install -r requirements.txt</code>+==== Bild-Mustererkennung mit OpenCV ==== 
 +  [[https://www.youtube.com/watch?v=WQeoO7MI0Bs|LEARN OPENCV in 3 HOURS with Python | Including 3x Example Projects (2020)]] 
 +  * [[https://stackoverflow.com/questions/28327020/opencv-detect-mouse-position-clicking-over-a-picture|Opencv: detect mouse position clicking over a picture]] 
 +  * https://colab.research.google.com/github/xn2333/OpenCV/blob/master/Image_Processing_in_Python_Final.ipynb
  
 +==== Machine Learning ====
 +  * [[prog:ml:start|Machine Learning]]
  
-[[prog:python:pip|Tips zu pip]]+=== LXML === 
 +  * [[http://stackoverflow.com/questions/34224854/add-multiple-elements-to-xml-with-lxml|add-multiple-elements-to-xml-with-lxml]]
  
 +=== Python-Tipps ===
  
-==== Unit-Tests ==== +  [[prog:python:tipps|Python-Tipps & Tricks]]
- +
-  https://code.tutsplus.com/tutorials/write-professional-unit-tests-in-python--cms-25835 +
-  * https://medium.com/@rinu.gour123/unit-testing-with-python-unittest-ad045671010 +
- +
- +
-=== LXML === +
-  * [[http://stackoverflow.com/questions/34224854/add-multiple-elements-to-xml-with-lxml|add-multiple-elements-to-xml-with-lxml]]+
  
-=== Dynamic code ===+==== 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 82: 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]] 
- 
-=== Paramiko === 
  
-  * http://www.admin-magazin.de/Das-Heft/2012/06/Paramiko-oeffnet-SSH-Verbindungen 
  
  
prog/python.1572165432.txt.gz · Zuletzt geändert: 2019/10/27 08:37 von admin