|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- Ce fichier contient diverses notes utiles à la préparation des futurs cours.
-
- # Sujets à évoquer
-
- * virtualenv, pip, et bibliothèques tierces
-
- * IDEs: don't use them ... yet (or ever)
- * linters,
- * déboguage
- * demo: pyflakes - black
-
- ## bits
-
- * constants are UPPER_CASE
-
- ### classes
- * multiple inheritance
- * delegation
- * properties on classes
- * isinstance
- * * several `__init__` ? Nope, alternative constructors
- * https://code-maven.com/slides/python-programming/class-methods-alternative-constructor private
- * magical methods: __str__, __repr__, __add__, ...
-
- ### rest
-
- * attributes on functions (you never know)
- * `__call__`, functors
- * scopes, closures, global, nonlocal
- * no overlaod in python
- * stable sorts
- * dict: setdefault
- * listes: pop prend un argument
- * slices takes a step too [::-1] -> reverse
- * with: contextmanager, ContextDecorator
- * short circuit in if: `if a is not None and a.b == 42`
- * splat operator, *args, **kwags, keyword-only
-
- ## big stuff
-
- * files: "wa", accès séquentiel (chunk = file.read(chunk_size))
- * style: trailing white space, editor configuration,
- * [formatage de strings](fragments/format.md)
- * liste par compréhension et filtres
- * `help()`
- * packages, libraries tierces
- * requests, HTTP protocol (headers, methodes, urls, anchors, links ...)
-
- * design patters
- * solid
-
- * décorateurs
-
- * regular expressions
-
- * Données binaires, encodage (binaire, ASCII, hexadécimal, unicode ...)
-
-
-
- * tests: pytest, TDD
-
- ## other subjects
-
- * the dvorak layout
- * markdown, pandoc, beamer
-
- # Idées d'ateliers
-
- * Writing GUIs: PyQt, Kivy
-
- Parser du RSS et télécharger les émissions:
-
- * Source: https://github.com/dmerejkowsky/pypodget/
- * Concepts:
- * `setup.py`
- * scripts, entry points
-
- * Remplacer Matlab par Python + numpy + matplotlib
- * Effets audio
- * Jeux vidéos (pygame)
- * IOT : micro-controller, Rasberry Pi
- * Blender/GIMP
- * Stéganographie: cacher un texte dans une image
-
- * Patcher des binaires Windows pour le fun?
-
- * csv, Microsoft Office integration
|