Data Visualization Using Chartjs and Django
Prerequisite : django installation With the growth of data, data visualization in become a import part here we will implement chart for our data in our web apps using chartjs with django. Django is a high-level Python Web framework based web framework and chartjs is an easy way to include animated, interactive graphs....
read more
Python | Relational fields in Django models
...
read more
Moment.js moment().month() Method
The method `moment().month()` in Moment.js is employed to retrieve or modify the month of the Moment object. It’s important to note that the months in Moment.js are zero-indexed. Consequently, the valid range for months is 0 to 11, where 0 corresponds to January and 11 to December. If a value greater than 11 is specified, it will roll over to the subsequent year....
read more
Extraction of Tweets using Tweepy
Introduction:...
read more
Styling Django Forms with django-crispy-forms
Django by default doesn’t provide any Django form styling method due to which it takes a lot of effort and precious time to beautifully style a form. django-crispy-forms solves this problem for us. It will let you control the rendering behavior of your Django forms in a very elegant and DRY way....
read more
Role of SemiColon in various Programming Languages
Semicolon is a punctuation mark (;) indicating a pause, typically between two main clauses, that is more pronounced than that indicated by a comma. In programming, Semicolon symbol plays a vital role. It is used to show the termination of instruction in various programming languages as well, like C, C++, Java, JavaScript and Python....
read more
Django settings file – step by step Explanation
Once we create the Django project, it comes with a predefined Directory structure having the following files with each file having its own uses....
read more
Django – Upload files with FileSystemStorage
Django ships with the FileSystemStorage class that helps to store files locally so that these files can be served as media in development. In this article, we will see how to implement a file upload system using FileSystemStorage API to store the files locally. Note:This method should only be used in development and not in production....
read more
How to communicate JSON data between Python and Node.js ?
The following article covers how to communicate JSON data between Python and Node.js. Suppose we are working with the Node.js application, and we want to make use of a specific library that is only available in python or vice versa. We should be able to share the results from one language to another and to achieve it, we will use the JSON as it is language independent....
read more
How to deploy a machine learning model using Node.js ?
In this article, we will learn how to deploy a machine learning model using NodeJS. While doing so we will make a simple handwritten digit recognizer using NodeJS and tensorflow.js....
read more
YouTube Media/Audio Download using Python – pafy
This tutorial will help you download youtube video or audio with python using pafy library. Pafy library is used to retrieve YouTube content and metadata....
read more
Django Authentication Project with Firebase
Django is a Python-based web framework that allows you to quickly create efficient web applications.. When we are building any website, we will need a set of components: how to handle user authentication (signing up, signing in, signing out), a management panel for managing our website, how to upload files, etc. Django gives us ready-made components to use that easily....
read more