Conda is the language agnostic, cross platform package management and environment management system. We can install it stand alone Verify the Conda installation Package Installation and update How to Create Conda Virtual Environment Create different python environments Create Environment for…
COMMAND check usage: django-admin check [-h] [--tag TAGS] [--list-tags] [--deploy] [--fail-level {CRITICAL,ERROR,WARNING,INFO,DEBUG}] [--database DATABASES] [--version] [-v {0,1,2,3}] [--settings SETTINGS] [--pythonpath PYTHONPATH] [--traceback] [--no-color] [--force-color] [app_label ...] Checks the entire Django project for potential problems. positional arguments: app_label optional arguments: -h,…
Django the popular web development framework for Python. It is based on Model View and Template referred as MVT. Install Django as follows This article takes to the directory structure of whole Django framework and explains what each package and…
Python is general purpose, high level scripting language. It is known for it’s elegant syntax, readability and productivity. As it is said, python is general purpose programming language such that it can be used to create backend web applications. For…
A simple python program to create a random password without using any libraries using prime number is as follows Random numbers created by above program is not truly random, it was an effort to create random password with out using…
Commits in git are immutable and each commit maintains the two different dates that is When you amend the commit, author date won’t be changed but commitDate will be updated to current date and time To list commits along with…
Flask is micro web development framework unlike Django flask doesn’t comes with everything with end to end solution like ORM etc. Sometimes which good because you don’t want bhramhastra to kill sparrow. Such that, not to make things unnecessarily complicated…
Arrow functions were introduced in ES6 (EcmaScript 6) which provides the more compact way to work with anonymous functions with smaller and compact syntax making code more readable and structured. Though, arrow functions provide compact and short hand syntax to…
WebP is the image format that provides the effective lossy and lossless compression compared with other formats like PNG and JPEG for images on the web. Using WebP formats makes the web faster with smaller footprint images that stunning in…
A fixture is a collection of file that hold the serialized content of the database. Files that comprise the fixture can be distributed across multiple directories and application in the Django project Fixtures are useful to prepopulate selected tables with…