Ali Yaman·10 hours agoExploring the Power of Python Decorators: Practical Use Cases and Advanced TechniquesPython decorators are an elegant and powerful feature that allows developers to modify or enhance the behavior of functions or methods without changing their code. Often underutilized, decorators can make your code more concise, reusable, and maintainable. In this article, we’ll explore the concept of decorators, their practical use cases…Django5 min readDjango5 min read
Anar Aliyev·11 hours agoOptimize blocking calls in FastAPIFastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.7+ based on standard Python-type hints. FastAPI is highly popular for its async support. And because async in Python is much more new concept there can be some challenges in production environments when working with highly used…Django2 min readDjango2 min read
Mahmoud Nasser·1 day agoGetting Started with Django: Best ResourceHey there! I’m happy to see you’re interested in Django, a popular Python web framework that makes building web applications easy peasy. Whether you’re a beginner or a seasoned developer, there are loads of resources available to help you learn Django and level up your skills. …Django4 min readDjango4 min read
Audry A·3 hours agoMachine Learning For Food Lovers: Exploratory Data Analysis On Recipes And Recipe ReviewsHave you ever spent hours reading through multiple recipes and yet unable to determine which best suits your needs? Are you a newbie just starting with machine learning? Most importantly, are you a ‘food lover’? If you can identify with the above, then this article is for you. Hooray! My…Django3 min readDjango3 min read
V. Alp·9 hours agoLearn to master Django Python 1 : IntroductionDjango is a web framework that uses the Python programming language. Django was first created by Simon Wilison and Adrian Holovaty in 2003.Django3 min readDjango3 min read
Sevdimali·4 hours agoHow to add a custom field in list_display[Django]In today's short article, I will discuss adding nonmodel fields to list_display in Django Admin. Django has a powerful built-in admin panel. But sometimes we need extra customization. Custom Django Admin Actions Django Admin Actions allows us to make bulk operations. The default one is the delete action.towardsdev.com But today I want to talk about especially list_display field. …Django3 min readDjango3 min read
Viktor NagornyyinPowered by Django·10 hours agoMember-only18 Django Apps To Build And Ship a Product QuicklyYou got an idea for an app you would like to build and profit from using the Django web framework. Where do you start to develop the app quickly? When building a product, you want to build a Minimum Viable Product (MVP) and ship it as quickly as possible to…Django16 min readDjango16 min read
devil_!234@·1 day agoUnderstanding clean architecture in Python — Deep dive on the codeIn this article, I will take you through a working example of clean architecture in Python. The underlying concepts and design are language agnostic and can be applied with any language. Topic — We will build a sample use case of creating a Customer. …Django8 min readDjango8 min read
Viktor NagornyyinPowered by Django·11 hours agoMember-onlyWhat Is a Minimum Viable Product (MVP)?When building a Django-powered product, it’s important to ship it quickly to help you validate your idea early. This is where the Minimum Viable Product concept can help you. The Lean Startup methodology has revolutionized the way software products are built, and one of the key concepts in this approach…Django2 min readDjango2 min read
Oleksii Budzinskyi·1 day agoSet up Elastic Search with Django Rest FrameworkGuide tested with Ubuntu 22.04 Elastic search components should be installed via APT. To start off, utilize cURL, the command line utility for transmitting data through URLs, to import the Elasticsearch public GPG key into APT. It’s worth noting that we’re employing the -fsSL arguments to suppress all progress and…Django2 min readDjango2 min read