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 6 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?

spiders/          # a directory where you’ll later put your spiders __init__.py Now, we will create our spider file name MySpider.py, create this file under the director Spiders at MySpider/MySpider/spiders. Add the following code in the MySpider.py file. import scrapy from scrapy.spiders import CrawlSpider, Rule from scrapy.linkextractors import LinkExtractor class SpiderForBlog(CrawlSpider): name […]

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. […]