Automate Google Sheet Calculations with Python, Amazon Alexa, & WayScript

preview_player
Показать описание
Link for WayScript --

In this video we'll cover how to get Amazon Alexa to do your python calculations for you with voice control. We'll create a workflow that starts with Alexa, uses python for calculations, and returns us alexa speech text as a result.

Here's the link to the spreadsheet if you want to play with it yourself -

Thanks so much for all the continued support - I wouldn't be getting the chance to talk to start ups if it wasn't for you guys. 4,300 subscribers at the time of typing this. You guys are incredible. Thank you.
*****************************************************************
Full code from the video:

import pandas as pd

product = inputs['Product']
amount = inputs['Amount']

amount = [int(a) for a in amount]

data = {'product':product, 'amount':amount}
df = pd.DataFrame(data)

print(a_total)

outputs['a_total'] = a_total

*****************************************************************
Code from this tutorial and all my others can be found on my GitHub:

Check out my website:

If you liked the video - please hit the like button. It means more than you know. Thanks for watching and thank you for all your support!!

Always looking for suggestions on what video to make next -- leave me a comment with your project! Happy Coding!
Рекомендации по теме
Комментарии
Автор

Link is STILL working over a year later! TY @WayScript & @Derrick Sherrill :D

Mr_Sparling
Автор

Hi, Can you please make a video to automate SQL dB back and store on Google drive and delete old backups in PYTHON

Subash-DE
Автор

Is alexa removed from wayscript, coz i see google assistant and not alexa?

theuib
Автор

How to connect python to social network sites

mahendra
Автор

The invitation isn't working. It's saying the email doesn't match the invitation key. I assume that key is assigned to your email

mksmurff