Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Blog Directory  >  Technology Blogs  >  Django Central technology Blog  > 

2021-05-01 08:56
NumPy is one of the most popular packages in the Python ecosystem. NumPy adds support to large multidimensional arrays and matrices with great efficiency. Numpy arrays are a lot faster ... R… Read More
2021-04-07 08:46
In this tutorial, we will learn how to create custom model validators using Django. Understanding The Problem Django models come with their own built-in validations, that we put while creati… Read More
2021-04-06 14:39
In this tutorial, we will learn how to make optional model fields required in Django admin to make sure that data for these fields are populated on the creation of ... Read more The post Dja… Read More
2020-09-24 05:50
In this tutorial, we will learn how to send emails with zip files using Python’s built-in modules. Pre-Requirements I am assuming that you already have an SMTP (Simple Mail Transfer Pr… Read More
2020-09-07 06:42
In programming, a callable is something that can be called. In Python, a callable is anything that can be called, using parentheses and maybe with some arguments. Functions, Generators, and… Read More
2020-05-10 15:55
One of the most common requirement in any modern web application is the ability to take images or pictures from the users as input and save them on the server however Letting users upload fi… Read More
2020-04-26 14:21
While working with web applications often we need to store sensitive data for authentication of different modules such as database credentials and API keys. These sensitive keys should not b… Read More
2020-01-24 13:24
Problem Definition Create a python program to reverse a sentence. Algorithm Take a string as input. Convert the sentence into a list of words. Join the list in the reverse order which ultima… Read More
2020-01-14 06:15
Problem Definition Create a Python program to reverse a number in Python. Solution This article will show multiple solutions for reversing a number in Python. Reversing a number mathematical… Read More
2020-01-04 09:18
A manager is an interface through which database query operations are provided to Django models. At least one Manager exists for every model in a Django application, objects is the defa… Read More
2020-01-03 16:14
Django ships with built-in syndication feed generating framework, which is used to generate dynamic Atom and RSS feeds. RSS is an abbreviation for Really Simple Syndication, it’s a way… Read More
2020-01-03 07:12
Django comes with baked-in functionality for generating sitemaps dynamically using the sitemap framework. A sitemap is an XML file that informs search engines such as Google, the pages of yo… Read More
2019-12-03 09:16
In Django Media files are the files uploaded by users on the system. However, like static files media files shouldn’t be trusted. There are always security concerns when dealing with u… Read More
2019-12-03 05:22
Managing static assets such as CSS, Javascript, fonts are core components of any modern web application Django provides us a large degree of freedom and flexibility on managing and serving s… Read More
2019-10-22 06:44
The factorial of a number is the product of all the integers from 1 to that number. Mathematically, the formula for the factorial is as follows. If n is an integer greater than or equal to 1… Read More
2019-10-19 12:50
A leap year is a year, occurring once every four years, which has 366 days including 29 February as an intercalary day. A leap year is exactly divisible by 4 except for century years (years… Read More
2019-10-18 14:19
Problem Definition Create a Python program to multiply two numbers. Program num_1 = 2 num_2 = 3 product = num_1 * num_2 print("Product of {} and {} is {}".format(num_1, num_2,product)) Outpu… Read More
2019-10-17 11:51
Django is a high level full-stack open-source web framework written in Python, that encourages rapid development and clean, pragmatic design. Django, in its ‘out-of-the-box’ stat… Read More

Share the post

Django Central

×

Subscribe to Django Central

Get updates delivered right to your inbox!

Thank you for your subscription

×