Author Archives: Sumit Kumar

Copy data from S3 to Redshift using Lambda

Posted on by Sumit Kumar

I have create the Video and explain the same.   Below is the code used in Video tutorial ###### import json import boto3 from datetime import datetime import psycopg2 from env import ENV from settings import credential,REDSHIFT_ROLE,BUCKET ENV=’dev’ credential = { ‘dbname’ : ‘dev’, ‘port’ : ‘5439’, ‘user’ : ‘awsuser’, ‘password’ : ‘Deltafrog#123’, ‘host_url’:’redshift-cluster-1.cgymtibgpcfw.us-east-1.redshift.amazonaws.com’ } […]

Speech To Text Conversion using Python

Posted on by Sumit Kumar

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