October 19, 2021 No Comments

Automate Birthday Wishing On LinkedIn Using Python + Flask + Selenium

LinkedIn is a purely professional networking and employment-oriented website. It is a platform where the world’s employees and employers can meet and interact with each other. So when it comes to a special day like a birthday, then wishing without forgetting is a must to make stronger connections. Now you don’t need to worry about […]

May 25, 2021 No Comments

NLP Tutorial: Movie Recommendation System Using BERT

Recommendation systems are built to generate recommendations for particular item. On ecommerce websites like Amazon, we get product recommendations and on youtube, we get video recommendations. Nowadays, recommendations systems are being used on many more content rich websites like news, movies, blogs, etc. Here is our own try to create a Natural Language Processing (NLP) […]

March 28, 2021 No Comments

Question and Answering System Using GPT3

Since OpenAI launched GPT-3, we have been seeing numerous applications with various functionalities developed using GPT3. Recently GPT-3 added new feature of Question Answering system which we took for a spin to check how it works. In our experimentation with small data, the system looks pretty promising. It is fetching answers quite accurately from small data. In future, […]

March 10, 2021 No Comments

How To Get Transcript Of YouTube Video Using Python

Introduction In this blog, we will see how to fetch the text/caption/transcription of all videos from a particular YouTube channel. For that, we need YouTube data API v3 and the channel ID of the channel for which we want to fetch the captions. Below are the steps to fetch the caption of all videos, if […]

December 24, 2020 No Comments

Build Twilio Autopilot Chatbot For SMS And Whatsapp Using Python

Autopilot is a conversational AI platform offered by Twilio to build, train, and deploy artificially intelligent chatbots, Conversational IVRs (voice-driven phone menus), and Alexa skills using natural language understanding and machine learning. This blog contains a step-by-step tutorial to create your first virtual assistant with Twilio Autopilot. Prerequisites: 1) You need to sign up for a […]

September 4, 2020 No Comments

Python Tutorial: Automate Google Translation Using Selenium

Google Translator is an important tool to translate the input text into one language from another language. Google Translator can translate one language to another language for more than a hundred languages. A selenium web driver is a powerful tool, which opens a browser instance automatically and we use it for Google Translator. What is […]

April 6, 2020 No Comments

Python Tutorial: How To Make A Website Crawler Using Scrapy?

What is Web Crawler? Web Crawler is a program that collects content from the web. Web Crawler is also known as spiders, robots, bots, etc. Let’s take an example to understand what the crawlers do. A website’s Home page may have links for other pages like Services, About, Contact, Career, etc. Now, these pages may […]

November 22, 2019 No Comments

Dialogflow Tutorial: Back Functionality In Chatbot Using Python + Django

Dialogflow is a very powerful tool when it comes to chatbots development. We can create complex conversation flow using Dialogflow. Not only logical-tree-based step-by-step conversation flow but we can also create free flow where user can jump from one point of conversation to another. However, Dialogflow has its own limitations. It doesn’t provide all the functionalities we require. […]