Generators are memory efficient. They allow us to code with minimum intermediate arguments, less data structures. Generators are of two types, generat...
MicroPyramid Blog
Deep dives into Django, Python, Machine Learning, Salesforce, React, Flutter, Svelte, AWS, and the technologies that power modern applications.
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...
Google's Page Speed Insights measures the performance of a page for mobile devices and desktop devices. It fetches the url twice, once with a mob...
Factory Boy is a fixtures replacement tool. It allows you to use objects customized for the current test, while only declaring the test-specific field...
Optical Character Recognition(OCR) is the process of electronically extracting text from images or any documents like PDF and reusing it in a variety ...