Learn by building, how we built our own collaboration tool in Django

Listen now: In this episode we tell the story about Pybites CMS, our new powertool we use to better streamline our business. We tell why we built it, how it was an opportunity for Julian to brush up his coding skills, how we applied the PDM philosophy of learning by building, scratching your own itch.… Continue reading Learn by building, how we built our own collaboration tool in Django

Learn FastAPI through building a simple food tracker

If you’re doing any type of web development in Python, there’s a good chance you’ve heard about FastAPI by now. If not, go check it out now. It’s performant, intuitive and time saving (thanks to Pydantic / type hinting) and it supports API standards, e.g. OpenAPI (previously Swagger). You cannot leave this powerful framework out of your… Continue reading Learn FastAPI through building a simple food tracker

PyCon ES 2019 Alicante Highlights

Last weekend it was Pycon time again, my 6th one so far. This time closer to home: Alicante. I had an awesome time, meeting a lot of nice people, watching interesting talks and getting inspired overall to keep learning more Python. In this post I share 10 highlights, but keep in mind this is a selection only, there are quite a few more talks I want to check out once they appear on Youtube …

How to Create and Serve Zipfiles from Django

We added support to our platfom for bulk downloading of all your code submissions. This feature required creating and serving up zipfiles through Django. In this article I show you how to do it creating a simple Django app collecting code snippets through the admin interface, and serving them up in a zipfile via a download endpoint. Let’s dive straight in …