Integrate Flask with Flutter | Make Your Own API and use them in Flutter Apps | Flutter with Flask

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 ต.ค. 2024

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

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

    You solved my doubt about the adressess. Thank you!

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

    Nice video, I would love to see more flask + flutter integration. Do you know if flutter can work with Axios to make get/post requests to the flask backend? That is what I am used to using, but with Vuejs

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

    Great work! Didn't try yet but I feel that It already helped me.

  • @dpxy1599
    @dpxy1599 ปีที่แล้ว

    excellent brother you explained it in simple way

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

    Great video. Using your technique, can i host a mobile application with database connectivity for my local intranet users?

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

    I did the same as you when adding the api part in the URL, I checked the spelling too but it still isnt working, Its showing 'requested URL not found on server. What could be the possible problem?

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

    I have a question, like if we have a python script, in which we are using mediaPipe Blaze Pose for pose detection, and we are returning some values after the image processing. How we can integrate that script into our flutter application, like we will pass the video path to the python script, and after processing, it will pass back the output (String output) to the flutter application, and we will show that output on the screen of the flutter.
    How we can do this: I am confused, should we develop a backend for this purpose and make API calls for this?, or how we can make the python script run on the mobile device for image processing. should we convert that script into some tensorflow lite model to integrate? :)

    • @paulinaugaldecarreno
      @paulinaugaldecarreno ปีที่แล้ว

      i'm doing something similar, did you figure out how to do it?

    • @funomgamers4458
      @funomgamers4458 6 หลายเดือนก่อน

      ​@@paulinaugaldecarrenodid you get the result please help

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

    Dude, you are making great videos but why aren't you responding to the comments

  • @vishalgarna12
    @vishalgarna12 6 หลายเดือนก่อน +1

    Nice video 😊😊

  • @MOHAADAM-cf1qu
    @MOHAADAM-cf1qu 11 หลายเดือนก่อน

    Can we make post , put and delete methods in flusk?

  • @TECHLAY-x4f
    @TECHLAY-x4f 7 หลายเดือนก่อน +1

    How do I contact with my real mobile

  • @ridasyed5087
    @ridasyed5087 10 หลายเดือนก่อน

    If I want to send data from flutter app to flask server . How can I do that???

  • @humphreyrweikiza6047
    @humphreyrweikiza6047 ปีที่แล้ว

    Thank you for the video Now i was thinking of a way of uploading files then get accepted by the server run the script and bring back some list of infomation

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

    Hello please make a video on audio recording or any suggestions please explain

  • @nikhiljain5441
    @nikhiljain5441 7 หลายเดือนก่อน

    can we host a model in flask and send images through app to flask throgh api and do image classification and get result in app

    • @Ayesha-wf3sy
      @Ayesha-wf3sy 6 หลายเดือนก่อน

      @akshit madan I also want to ask this question

  • @mohammedzakakareem9966
    @mohammedzakakareem9966 10 หลายเดือนก่อน

    makes no sense on what you said about url type? Like what will be the url number man?

  • @margapuriamukthasrimalyada359
    @margapuriamukthasrimalyada359 ปีที่แล้ว

    how do you deploy

  • @shaikhrafatnaaz9316
    @shaikhrafatnaaz9316 ปีที่แล้ว

    Can we deploy the flask backend on VM instance?

  • @user-fj5oz4oe6o
    @user-fj5oz4oe6o 2 ปีที่แล้ว

    Thank you

  • @kasiruyamagata7716
    @kasiruyamagata7716 ปีที่แล้ว

    Getting no output for flutter web

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

    where should I put my flask code in the flutter app

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

      Flask code is not to be put inside flutter app but you need to host that flask api using heroku.
      Don't worry, im going to release a complete playlist of end to end tutorial in this week. I'll be creating a diabetes prediction model api in flask and then I'll make a mobile app for predictions

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

      Thanks man, looking forward to it

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

      @@AkshitMadan did you upload it?i am struggling to find such tutorial...

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

      @@AkshitMadan hey i can't find any playlist for such can you help me with the url

  • @CuddleCoder
    @CuddleCoder 3 ปีที่แล้ว

    Bro how to call a function inside a flask app from another python file?

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

      Just import that file.
      import 'second.py' as second
      Like this
      And now use
      second.func_name()

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

      @@AkshitMadan Bro thanks it works

    • @maba7097
      @maba7097 ปีที่แล้ว

      @@AkshitMadan How to call a function inside a flask app from a file containing data processing and a model trained in Google Colab?