How to make Lazy Evaluation in Python
Lazy evaluation has a wide range of use areas. Especially, if your code includes some expensive execution codes like some sort of requests at instantiation,… Read More »How to make Lazy Evaluation in Python
Python
Lazy evaluation has a wide range of use areas. Especially, if your code includes some expensive execution codes like some sort of requests at instantiation,… Read More »How to make Lazy Evaluation in Python
When we opened a file in Python and try to read inside its content we use the read() method which returns a sequence. A sequence… Read More »Pickle & Unpickle
In this article, we will see how to undecorate a decorated function. Before hopping into the undecorating part, we need to identify which kind of… Read More »How to Undecorate in Python
idempotent: unchanged when multiplied by itself. That is, if you run the same process multiple times, the last state won’t change. If we consider this… Read More »Idempotent operation
Hello, in this article I will show you how to implement Facebook social login into your web application. Before start, I need to inform you… Read More »Django Allauth Facebook Login
When people start Django development, many of them encounter the word “WSGI” and most of them still don’t know what WSGI is and stands for… Read More »WSGI Protocol and Django Implementation
Merhabalar, bu makalede bir Ubuntu işletim sisteminde varsayılan Python versiyonunun nasıl yükseltildiğini anlatacağım. Kullanacağım Ubuntu versiyonu 18.04 LTS olacak. Ubuntu 18.04 LTS’de varsayılan olarak Python… Read More »Ubuntu’da Python Versiyonunu Yükseltmek
Hello guys, I want to show you how to run an external Python script inside a Django environment for debugging, for data-crud operations, etc. You… Read More »How To Run External Script Inside Django Environment
While I was developing a drawing game, I needed to create channels. I created two models Room and the Artist. The index page’s required to… Read More »Handling Multiple Forms on the Same Page in Django
Geçenlerde RSS feed bildirimlerinin en hızlı şekilde cebime gelmesini sağlamak için oturup kodunu yazmaya başladım ancak async fonksiyonun içerisindeki for döngüsünün son evresinde takıldı ve… Read More »Takılan Thread’lerin pystuck ile Debug Edilmesi