Google Apps Script for Beginners Youtube Automation

  Рет қаралды 9,759

saperis

saperis

Күн бұрын

Пікірлер: 53
@jhciedev1729
@jhciedev1729 4 жыл бұрын
Waiting for more easy to understand tutorial like this! Thank you so much Chanel! :)
@saperis
@saperis 4 жыл бұрын
Glad it was helpful! By the way I have an online course where I have many more Google Apps Script videos. You might want to check it out: courses.saperis.io
@QwinBro
@QwinBro 6 ай бұрын
I am just starting to view your many resources (thank you!) I am needing a simple solution: I need to convert a range of cells (say D2:E10) that contain various three- or four-digit numbers into 24-hr time (830 to 08:30 or 1715 to 17:15) I would also like to make the cells change the number when entered (it is easier to enter the data on the number pad and not have to enter the ":" each time. I have seen this question out on the net quite a bit - so I thought I would ask you for a possible short? Many thanks!! Daniel
@allybaster7961
@allybaster7961 4 жыл бұрын
Great stuff....I really like the way you present your content. Can I maybe suggest that you post more small Google Appscript projects. Thatnks for all the great content so far!
@saperis
@saperis 4 жыл бұрын
Hi Ally. Thanks for the feedback! I post a Google Apps Script video tutorial every month. I sometimes work through a project and sometimes show how to do a specific action like the different options of getting a spreadsheet.
@allybaster7961
@allybaster7961 4 жыл бұрын
@@saperis Do you have anything on Udemy?
@saperis
@saperis 4 жыл бұрын
No, I don't (and won't) offer anything on Udemy. But I do have my own online course for Apps Script. Check it out: courses.saperis.io
@brucejuli4655
@brucejuli4655 3 жыл бұрын
Thanks for your video. I wonder how do you fix error at 19:03. In my case there is no items array at response value.
@saperis
@saperis 3 жыл бұрын
In my case I didn't have to do anything. I simply ran the code again and it worked. Debugging is always very case specific. What is the error message? If you run the code in debugging mode it can give you more insight in where the source of the problem is. Check out my video on what to do when your code isn't running: kzbin.info/www/bejne/gmW5YmiQra6deLM
@ubeydg
@ubeydg 3 жыл бұрын
Thanks. With this video, I've learned the name for the concept: "text interpolation".
@saperis
@saperis 3 жыл бұрын
Happy to hear that. 😀
@excelcut1135
@excelcut1135 3 жыл бұрын
That sentence, when you said we should capture what you are doing and what will be the output.. Methods and Procedures was a good insight for learners. Instead of copy paste we need to understand the core concept
@saperis
@saperis 3 жыл бұрын
Happy you liked it.
@rbfreitas
@rbfreitas 3 жыл бұрын
Great video! Clear and straight to the point
@thinkthinktechs1119
@thinkthinktechs1119 3 жыл бұрын
Thanks saperis for your awesome work
@saperis
@saperis 3 жыл бұрын
My pleasure! 😀
@ИльяСултанов
@ИльяСултанов 4 жыл бұрын
Thanks for you videos and hello from Moscow!
@saperis
@saperis 4 жыл бұрын
You're very welcome! Check out my Google Apps Script online course: courses.saperis.io Greetings, Chanel
@tienvan6574
@tienvan6574 Жыл бұрын
Do you have new version for this. It happen 3years ago and I do like everything you say in this video but the code is not showing subscriber or view count
@saperis
@saperis Жыл бұрын
We don't publish any Apps Script or Google Workspace videos on this channel anymore.
@FernandoCervone
@FernandoCervone 3 жыл бұрын
Excelente vídeo, parabéns e obrigado !!!
@saperis
@saperis 3 жыл бұрын
I'm happy you liked the video. Thank you for watching. 😀
@VladArnoldner
@VladArnoldner 4 жыл бұрын
Can I use this script tool to clean Watch Later list, which has reached its limit of 5,000 items? Yes, youtube has no menu option to clean Watch Later list!
@saperis
@saperis 4 жыл бұрын
Hi Vladimir. I've never done what you're trying to do so I can't answer the question based on experience. Have a look at the KZbin API: developers.google.com/youtube/v3/docs/playlists From what I can see in the documents you can create, update and delete playlists you create. The "Watch later" playlist, though, is a system playlist generated by KZbin. I could imagine that you can't modify this through the API. But you can try.
@VladArnoldner
@VladArnoldner 4 жыл бұрын
@@saperis thank you! I will try Selenium Webdriver with Python :)
@saperis
@saperis 4 жыл бұрын
That might actually be a good option. 👍
@excelcut1135
@excelcut1135 3 жыл бұрын
@@saperis Actually, Vladimir already had that answer... he just want to show off his knowledge... hahaha
@nastromagnetico
@nastromagnetico 3 жыл бұрын
Dear Chanel. Is there some reason for which Google App Script fills a spreadsheet fields too slowly (during the information retrieve process from a youtube channel, or something like that)?? Some other way to prevent this latency? Thanks so much
@saperis
@saperis 3 жыл бұрын
There are ways to optimize the run time of a script. For instance, you can loop through data and write row by row. Or you could loop through data, push it to an array and then write the whole array in one step to a range in a sheet. The second option is faster.
@nastromagnetico
@nastromagnetico 3 жыл бұрын
@@saperis with a two-dimensional array, I think. Thank you Chanel.
@karthicka371
@karthicka371 3 жыл бұрын
I'm looking to write a code that can track KZbin views for a particular video every 5 minutes and save the data along with the time in the cloud. Can you please help with that? I tried writing but couldn't find enough resources. Kindly guide mam
@saperis
@saperis 3 жыл бұрын
We share our Google Apps Script knowledge through our video tutorials. But we don't write actual script for any of our customers. But you might find this video tutorial to be helpful: kzbin.info/www/bejne/nqCmmadpoN-BbdU
@nastromagnetico
@nastromagnetico 3 жыл бұрын
Thanks a lot for your videos!! They're very helpful for me. My only trouble is how to get the duration of a single youtube video. Any suggestions for my problem? Thank you :)
@saperis
@saperis 3 жыл бұрын
Thank you for the feedback. When using an API you always have to check the official documentation to find out what data you can get through that specific API. So have a look at the KZbin API documentation. I think what you're looking for might be the contentDetails.duration property. For details reference the documentation: developers.google.com/youtube/v3/docs/videos
@nastromagnetico
@nastromagnetico 3 жыл бұрын
@@saperis You were so kind! Your suggestion solves my problem. Thank you for your help :)
@christianpabunan6005
@christianpabunan6005 3 жыл бұрын
Hello Mam Saperis! I'm your new subscriber from the Philippines. I found out all your videos are resourceful and absolutely helpful. If you don't mind Can I ask a favor? ^_^ ....tha If you can make a tutorial to make a hotel room booking with calendar reservation and with automated email response... Thanks in advance. More power to your channel.
@saperis
@saperis 3 жыл бұрын
Hi Christian. Thanks for watching the videos and learning with the community. I try to keep these videos as interesting as possible for all the viewers. Your request is rather specific for your needs. So I won't be able to create a video like the one you're requesting. But if you need help from an Apps Script developer to build that script for your hotel have a look here: www.upwork.com/hire/google-spreadsheet-freelancers/
@christianpabunan6005
@christianpabunan6005 3 жыл бұрын
@@saperis thanks a lot for giving attention of my request. ^^
@heidisimon1686
@heidisimon1686 3 жыл бұрын
Great presenter!
@saperis
@saperis 3 жыл бұрын
Glad you think so!
@salmanbinabduljabbar3651
@salmanbinabduljabbar3651 3 жыл бұрын
Hello Teacher, For me the debugging is not working. Any Idea why its not moving forward to 3rd line? the debugger can't debug on third line. Any help? I wasted 3-4 HOURS of my Life doing Debugging but Alas!!
@saperis
@saperis 3 жыл бұрын
Sorry, no idea why the debugging isn't working for your script.
@reboundpolychem2145
@reboundpolychem2145 4 жыл бұрын
Dear Madam, please suggest a VDO on mail merge
@saperis
@saperis 4 жыл бұрын
Here's my video on how to do a mail merge with Google Apps Script: kzbin.info/www/bejne/paKQdXx3fceHgq8
@ozegaming
@ozegaming 3 жыл бұрын
very Good
@saperis
@saperis 3 жыл бұрын
Thanks 😀
@AlbertoLoBruno
@AlbertoLoBruno 4 жыл бұрын
Bravissima!
@saperis
@saperis 4 жыл бұрын
Grazie Alberto! 😀
@excelcut1135
@excelcut1135 3 жыл бұрын
Hey Saperis, it's not working... showing error in that response variable declaration line.
@saperis
@saperis 3 жыл бұрын
Well in that case it's time to debug. Check this video to see how you can find error in your code: kzbin.info/www/bejne/gmW5YmiQra6deLM
@excelcut1135
@excelcut1135 3 жыл бұрын
@@saperis thanks. its working.
How to Debug Google Apps Script
14:42
saperis
Рет қаралды 16 М.
How Google Apps Script Foreach Loop Works
11:37
saperis
Рет қаралды 11 М.
Как Ходили родители в ШКОЛУ!
0:49
Family Box
Рет қаралды 2,3 МЛН
КОНЦЕРТЫ:  2 сезон | 1 выпуск | Камызяки
46:36
ТНТ Смотри еще!
Рет қаралды 3,7 МЛН
Make an API With Google Sheets and Google Apps Script
15:53
Cukmekerb's Coding Class
Рет қаралды 64 М.
Google Apps Script Triggers Explained 👈🏽
14:32
saperis
Рет қаралды 35 М.
IF-THEN Formulas
7:22
Ryan Karjala Gmail
Рет қаралды 374
Google Apps Script For Loop
19:09
saperis
Рет қаралды 20 М.
Automate Google Sheets with Chat GPT Macros & Apps Script
15:24
Learn Google Sheets & Excel Spreadsheets
Рет қаралды 80 М.
8 AI Tools I Wish I Tried Sooner
16:10
Futurepedia
Рет қаралды 314 М.
Google Apps Script Example: Automated YouTube Stats Workflow
15:10
Learn flexbox the easy way
34:04
Kevin Powell
Рет қаралды 738 М.
Google Apps Script: How to get Spreadsheet
12:39
saperis
Рет қаралды 14 М.