technique:python

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Prochaine révision
Révision précédente
Dernière révisionLes deux révisions suivantes
technique:python [2019/10/29 22:36] – créée francoisatechnique:python [2020/01/09 02:12] francoisa
Ligne 6: Ligne 6:
   * [[http://python.lycee.free.fr/|Débuter avec Python]]   * [[http://python.lycee.free.fr/|Débuter avec Python]]
   * [[https://inforef.be/swi/python.htm|Débuter avec Python avec Gerard Schimmen]]   * [[https://inforef.be/swi/python.htm|Débuter avec Python avec Gerard Schimmen]]
 +
 +===== Python en mode développement =====
 +
 +  * [[:technique:python:pip_virtualenv|Python pip et virtualenv]]
 +
 +===== Editeurs de code =====
 +
 +  * **Atom**  (libre, multi-OS) : [[https://atom.io/|https://atom.io/]]
 +  * Packages utiles : [[https://www.alsacreations.com/outils/lire/1744-editeur-code-source-atom-io.html|https://www.alsacreations.com/outils/lire/1744-editeur-code-source-atom-io.html]]
 +  * Packages recommandés pour python : french-menu, autocomplete-python, minimap, script (Ctrl+Shift+B)
  
 ===== Modules ===== ===== Modules =====
 +
 +==== Tkinter (old-school, mais fonctionnel) ====
 +
 +  * [[https://docs.python.org/fr/3/library/tkinter.html|https://docs.python.org/fr/3/library/tkinter.html]]
 +  * [[https://python.doctor/page-tkinter-interface-graphique-python-tutoriel|https://python.doctor/page-tkinter-interface-graphique-python-tutoriel]]
 +  * [[https://www.tutorialspoint.com/python/python_gui_programming.htm|https://www.tutorialspoint.com/python/python_gui_programming.htm]]
  
 ==== CSV ==== ==== CSV ====
Ligne 13: Ligne 29:
   * [[https://docs.python.org/fr/3/library/csv.html|Lire et écrire un CSV - Doc Python 3]]   * [[https://docs.python.org/fr/3/library/csv.html|Lire et écrire un CSV - Doc Python 3]]
   * [[http://www.chicoree.fr/w/Fichiers_CSV_en_Python|Lire et écrire un CSV]] (avec Chicorée)   * [[http://www.chicoree.fr/w/Fichiers_CSV_en_Python|Lire et écrire un CSV]] (avec Chicorée)
 +
 +==== Flask ====
 +
 +  * [[https://flask.palletsprojects.com/en/1.1.x/|https://flask.palletsprojects.com/en/1.1.x/]]
 +  * [[https://openclassrooms.com/fr/courses/4425066-concevez-un-site-avec-flask|https://openclassrooms.com/fr/courses/4425066-concevez-un-site-avec-flask]]
 +
 +==== WSGI ====
 +
 +  * [[https://www.bortzmeyer.org/wsgi.html|https://www.bortzmeyer.org/wsgi.html]]
 +  * [[https://wsgi.readthedocs.io/en/latest/index.html|https://wsgi.readthedocs.io/en/latest/index.html]]