Tag: Django
-
Why, When, and How to use Celery with Python
What is Celery? “Celery is an asynchronous task queue based on distributed message passing.” Let’s break that down:
-
Setting up a Python Virtual Environment for Web Development
Virtual Environments are helpful in keeping all the dependencies (packages), required for a Python project, in one place. So you can avoid issues with conflicting dependencies when working on different projects simultaneously. For instance, one major use case is when you want to run different Python versions like 2.7, 3.5, and 3.6 on the same…
-
Django’s Request-Response Cycle
Understanding the Request-Response Cycle is a crucial step in setting up for any WebServer. An example of the request-response cycle is when you “request” a web page by entering a URL in your browser and a web server sends a web page as ‘response’ to your browser. Of course, there’re usually several HTTP requests that…
-
Python for beginners
Getting started in Python programming took me just about a month of studying; given I’ve several years of C++ programming experience. This is an ok time frame for experienced programmers to get started, given you have something else going on in life as well. For beginners though, learning a new programming language in a useful…