PyWeb-IL #112 - January 2025
Schedule
I'll present how we implemented our Django settings, by using pydantic, which enables us to validate the configurable values and prevent runtime errors. In addition, we run health checks on some configuration parameters' custom types (like DB connection), to ensure the source availability, and provide the configurations' json schema for validating changes in the config (Can be used by AWS AppConfig).
Ruth is a Senior Python developer,working at Bluevine in the Core Backend team.
Discover how to quickly turn your Python scripts into interactive web apps using Streamlit. This session will cover key features like visualisations, widgets, and deployment, empowering you to create user-friendly interfaces with minimal effort.
Python is a very flexible language when it comes to variable types, but it allows for setting optional type-annotations.
You can mark all of your variables with types and then Python will promptly disregard your type-annotation.
So what is the value of these type annotation and how can you get to that value?