Step-by-step guide Python - Google Cloud Function

แชร์
ฝัง
  • เผยแพร่เมื่อ 9 ม.ค. 2025

ความคิดเห็น • 20

  • @christopherkube7805
    @christopherkube7805 2 ปีที่แล้ว +8

    It’s a very good and comprehensive tutorial with easy explanations.
    00:00 Intro
    02:00 Reviewing the example Cloud Function from Google (locally)
    03:50 How to run the example Cloud Function locally
    10:20 Into to Google Cloud Platform (GCP)
    17:12 Create Service Account
    22:55 Create the example Cloud Function from Google (in GCP)
    31:19 Create Cloud Function via CLI
    38:35 Continuous Deployment from Git to GCP using Cloud Build
    49:15 Triggering the Could Function with the Cloud Scheduler

  • @ScrolltheNature
    @ScrolltheNature ปีที่แล้ว +3

    Save !! this man at all cost ...life saviour.

  • @Andresferro6
    @Andresferro6 2 ปีที่แล้ว +5

    Very good tutorial, nice, really nice work.

  • @abrarmahi
    @abrarmahi 11 หลายเดือนก่อน

    If you know/have a cloud project the video starts 17:20. Watch at 1.5x speed.

  • @AlexandreLimaC
    @AlexandreLimaC ปีที่แล้ว +2

    Very good intro! Thanks

  • @ChanceTEK
    @ChanceTEK ปีที่แล้ว +3

    Extremely helpful. Thank you.

  • @AntonioPereira-pb5ym
    @AntonioPereira-pb5ym 8 หลายเดือนก่อน +1

    very usefull tutorial, thank you !!!!

  • @kaliyappang3973
    @kaliyappang3973 2 ปีที่แล้ว +2

    Nicely explained.. thanks for ur wonderful video work

  • @hirefiedinc6313
    @hirefiedinc6313 ปีที่แล้ว +1

    Very nice tutorial. Thanks

  • @AlexBrazilDF
    @AlexBrazilDF ปีที่แล้ว +1

    Amazing friend!🤓

  • @margaretisolan9189
    @margaretisolan9189 2 ปีที่แล้ว +1

    Good stuff. Thank you.

  • @rukhshanrehman5808
    @rukhshanrehman5808 2 ปีที่แล้ว +1

    This was very nice. Will it be possible to share the git for this?

    • @ForDevelopers
      @ForDevelopers  2 ปีที่แล้ว +2

      Good point, I updated the description. and for quick reference github.com/stefanbertos/for-developers-gcp-cloud-function-python

  • @TradingBantai
    @TradingBantai 2 ปีที่แล้ว +1

    Can google access my data in cloud

    • @ForDevelopers
      @ForDevelopers  2 ปีที่แล้ว

      Depends who represents "google" in your question :) And remember I'm not a Google employee.

  • @kylewang4723
    @kylewang4723 2 ปีที่แล้ว +1

    thanks for the video! I had issues with trying to run it locally - it raises a 400 error. Apparently request.get_json() will do that in flask version 2.1 now so the simple example doesn't work anymore.

    • @ForDevelopers
      @ForDevelopers  2 ปีที่แล้ว

      good to know, I already commited the fix into the github and it is pretty simple, just set the parameters of the get_json.
      request_json = request.get_json(force=True, silent=True, cache=True)
      and then the simple example will also work.