Moderniser un blog Pelican en 2026 — Architecture, Stack & CI/CD

Posted on Sun 29 March 2026 in Développement • Tagged with Pelican, Python, GitHub Actions, CI/CD, uv, Justfile, Blog

Moderniser un blog Pelican en 2026

Ce blog existe depuis 2020. Il a été construit à l'époque avec une stack qui fonctionnait, mais qui n'a pas bien vieilli : requirements.txt sans versions pinées, 6 scripts shell, un Makefile généré par Pelican, des plugins tiers abandonnés, un thème datant de 2013 …


Continue reading

"Hello World" en Python - Repl.it

Posted on Wed 08 January 2020 in Développement • Tagged with Python, Repl.it

Afficher "Hello World!" en Python


PyConFR 2019 (Bordeaux) - gRPC/Python - Exemple pratique d'utilisation de micro-services pour une (mini) application d'analyse sémantiques de textes (NLP).

Posted on Tue 07 January 2020 in Développement • Tagged with Python, PyConFr, gRPC, Twitter, NLP, Présentation, Intermédiaire

Présentation: PyConFR 2019 (Bordeaux) - gRPC/Python

Conférence

Twitter

Twitter -> #PyconFr2019 Micro-services #gRPC et #Python

Programme

Programme PyConFR 2019

Programme PyConFR 2019

Présentation (supports)

Ce dont j'ai (essayé) de parler :p

  • SOC -> Separation Of Concerns
  • Conteneurisation
  • Distributions
  • Mise à l'échelle
  • Spécification (explicite)
  • Validation
  • Packaging/Stratégie de versionnement
  • Data/Services workflow

Ce dont je n'ai …


Continue reading

"Hello World" en Python

Posted on Mon 06 January 2020 in Développement • Tagged with Python

Comment afficher "Hello World!" en Python

Code source

def helloworld():
    print("Hello World!")

if __name__ == '__main__':
    helloworld()

Résultats

╰─ echo "def helloworld():\n\tprint('Hello World!')\n\nif __name__ == '__main__':\n\thelloworld()" | python
Hello World!