TowardsMachineLearning

python

Build WhatsApp chatbot using NodeJS – part4

Step 13. Handle user’s input:- So here we’ve created another folder called “pdf” and inside that we’ve created another file called Index.js in which we’ve written this function called ” getQuotation ” to transform data as per our needs. Step 14. Create invoice Here we’ll be writing createInvoice.js file inside pdf folder and we’ll using

Build WhatsApp chatbot using NodeJS – part4 Read More »

Build WhatsApp chatbot using NodeJS – part2

Introduction:- In this post we’ll solve POC in which “MachineLearning-made-easy.com” wishes to use WhatsApp Bot to generate invoices for its client. WhatsApp Bot should also be able to send these invoices to respective clients. So stay tuned to check this project in my next post. Step 1. Creating an agent on Dialogflow:- Create a new

Build WhatsApp chatbot using NodeJS – part2 Read More »

Public,Protected & Private members in Python

Introduction A lot of people learn object-oriented programming with languages like C++ and Java. And while they learn, they’re told over and over again that encapsulation is one of the key principles of object-oriented paradigm and that they should take advantage of it. In C++ and Java, things are pretty straight-forward. There are 3 magical and easy

Public,Protected & Private members in Python Read More »

Inheritance in Python

Introduction:- One of the major advantages of Object Oriented Programming is re-use. Inheritance is one of the mechanisms to achieve it. In inheritance, a class (usually called superclass/parent class) is inherited by another class (usually called subclass/child class/derived class). The subclass adds some attributes to superclass. In inheritance, the child class acquires the properties and

Inheritance in Python Read More »