Django Template Tags are simple Python functions that accept a value, an optional argument, and return a value to be displayed on the page.First, In y...
MicroPyramid Blog
Deep dives into Django, Python, Machine Learning, Salesforce, React, Flutter, Svelte, AWS, and the technologies that power modern applications.
Introduction to Object Oriented Programming with Python...
Integrate Sendgrid API to your Heroku app to deliver simplified emails like any notification emails, user signups etc....
Generators are memory efficient. They allow us to code with minimum intermediate arguments, less data structures. Generators are of two types, generat...
In general use cases we upload the CSV files to the system to store huge amount of data by uploading single file. For example in e-commerce sites we j...
Travis CI is a continuous integration service used to build and test applications hosted at GitHub. Here are simple steps to add CI to you django proj...
Integrating Twitter sign in (OAuth) in Django App, which includes1. Capturing username via Twitter Login2. Updating authenticated user current status ...
Xlsxwriter is a python module through which we can write data to Excel 2007+ XLSX file format. In this blog post we learn to write data, insert images...
To retrieve maximum, minimum or average values from group of rows we can use django Aggregation. For example to retrieve max price or avg price of pro...
In this blog, I'm going to explain you how to write the Sphinx docs using reStructuredText to host in the Read the Docs.Installing Sphinx$ pip in...