Hello Reader, In this blog, we will learn how to convert Speech to Text using Python. Follow below Steps:- Download and install Anaconda (for python and jupyter). Install SpeechRecognition. Open Anaconda prompt and install SpeechRecognition. 3. Install pyaudio. pip install pyaudio If you are getting below error while installing pyaudio:- Then download pyaudio binary and […]
Dear Reader, In this blog we will learn about Walrus operator in python. This is the newly added feature in python 3.8. So please install python 3.8 or higher version otherwise walrus operator will not be available for you. We understand that no body like change but change is something that eventualy we have to […]
Dear Reader, In this blog, I will tell you how to capture S3 events using Lambda function and send status mail to the required recipient using SES. We will do it in three steps. So let’s start…… Step:-1) Create IAM Roles for Lambda Function so that the Lambda function can call AWS services. Please […]
Before discussing about Azure HDInsight and Azure Databrick Lets discuss Hadoop, Spark and Databricks. Hadoop:- Hadoop is tool to solve bigdata problem. When we say bigdata problem we have problem to store huge data and process the huge data. Apache Hadoop came with solution for these two problem. Hadoop have HDFS to store and MapReduce […]
In this blog we will learn how to load any csv file into Snowflake table using python. Below example will connect to my trial snowflake account and it will create table student_math_mark. And load csv file into STAGE table first then from STAGE table it will load csv file into table student_math_mark. Using python code […]
In this blog, we will learn how to connect to snowflake using python connector. Follow below step:- 1)Create a trial account on snowflake using below URL. https://trial.snowflake.com you will get 30 days free trial and $300 of credit to explore various features of the snowflake. 2)Login to trial account, create virtual warehouse select size as […]
Snowflake is the first analytical data warehouse build on the cloud. It provides a data warehouse as Software-as-a-Service (SaaS). It started with AWS but now available across three of the market’s largest public cloud providers. Snowflake is faster, easier to use and far more flexible than tradition warehouse. In this blog, we will discuss […]
In this Post we will learn how to setup learning environment for pyspark in windows. To learning spark with python, we will install pyspark in windows and we will use jupyter notebook and spider IDE to test and run pyspark code. Prerequisite:- Java should be installed. If java is not installed please install java then […]
In this post we will discuss about handling Null value during sqoop import/export. If any value is NULL in the table and we want to sqoop that table ,then sqoop will import NULL value as string “null” in HDFS. So , that will create problem to use Null condition in our query using hive For […]
Scala is an acronym for Scalable Language. Scala is a modern multi-paradigm programming language designed to express common programming patterns in a concise ,elegant and type-safe way. multi-paradigm programming means it supports Object oriented programming as well as fuctional programming. So scala is a scalable programming language for component software with the focus on pattern […]