Skip to main content

2 posts tagged with "Python"

View All Tags

How to A/B Test Your Python Application

· 9 min read
Chavez Harris
Build. Break. Learn. Repeat.

Will showing the number of book copies sold on my website encourage more people to buy it? To answer this question confidently, I can rely upon A/B testing for guidance. This method of testing allows us to evaluate two versions of a website or app by releasing them to different user segments to see which one performs better.

Cover photo

How to Use Feature Flags with Flask

· 6 min read
Chavez Harris
Build. Break. Learn. Repeat.

Feature flags benefit our continuous integration and continuous deployment (CI/CD) workflows. As developers, we can quickly roll out and test new features without re-deploying or changing the application's code. Due to its simplicity, feature flagging can be incorporated into both new and existing applications. Let me walk you through how to use feature flags in a Flask application to help you better understand this concept.

cover