Python Python avancé: arguments et réflexion Personnellement j'use et abuse des opérateurs un peu magiques que Python propose pour manipuler les arguments; que ce soit pour ma librairie de scripting shell epycs ou bien en programmation par contrats avec python-dbc. Le langage ne s'arrête pas là puisqu'il propose également un
Python Compter les moutons avec des contrats en Python La programmation par contrat est fascinante, ce nom désigne un ensemble d'outils permettant de rendre un code fiable, facile a maintenir et simple a débugger. Une fois que vous commencez à les utiliser, ils deviennent tout simplement addictifs.
Python Counting Sheeps with Contracts in Python I find code contracts fascinating, these are development tools that allows you to specify the behavior of your system, making it safer, easier to maintain, and a breeze to debug. They play well with your usual code-quality tools and are absolutely addicting once you start using them!
News Epycs v1.4.0 is out! Epycs v1.4.0 has been released, it brings direct piping of python functions, which should free you from ever using awk or sed again!
Opinion Piece Pick two You have probably encountered the famous quality triangle. This triangle is made of the three elements Correct - Cheap - Fast, and you have to pick only two of its sides, the third one will stay forever out of your reach. Can't have your cake and eat it too, right?