Streamlit AMA App ft. Firestore Database

Поділитися
Вставка
  • Опубліковано 2 жов 2024

КОМЕНТАРІ • 26

  • @CodingIsFun
    @CodingIsFun 2 роки тому +4

    Another great project! It is always fun to watch your videos.
    I am already waiting for the 1k subs party 🎉

    • @andfanilo
      @andfanilo  2 роки тому

      Thanks for the support 🙂 Love to see you around!
      The 1k subs party will hopefully come in September eheh! How did you celebrate your 1k & 10k milestones btw 🎉 ?

    • @CodingIsFun
      @CodingIsFun 2 роки тому

      @@andfanilo No special celebration. 😅 I mean, I have not done any '1k & 10k' - special video 😬

  • @waliyudin86
    @waliyudin86 2 роки тому

    I can not convert the document.to_dict()) to Pandas Dataframe. how I could overcome this. Thank yuu....

    • @andfanilo
      @andfanilo  2 роки тому

      Hello Wali!
      I'm not near my computer right now, but you'll need to reformat your Dict to be able to use it in the data attribute of a Pandas DataFrame creation (structure in pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.html). What code/error do you have?

  • @Mans2024
    @Mans2024 Рік тому

    soo fastt i cantt followw uu

  • @rahulsumbly
    @rahulsumbly 9 місяців тому

    How to edit DB rules so it works even after 30 days testing period is over ?

    • @andfanilo
      @andfanilo  8 місяців тому

      You can change the
      `allow read, write: if request.time < timestamp.date(2023, 12, 24);`
      line, with a later date (like 2024, 03, 03 for the 3rd March 2024)
      you can also just remove the `if condition` to always accept the read & write operations, though Firebase will tell you it's an insecure rule

  • @AdoniasAlbuquerqueEng
    @AdoniasAlbuquerqueEng Рік тому

    Man, ive been wrestling with the json to toml thing for hours yesterday (must say I was tired and my mind was already burned to that point were we try to do something for hours and fail cause of some typing erro)
    Thanks realy a lot with that, project is ready

    • @AdoniasAlbuquerqueEng
      @AdoniasAlbuquerqueEng Рік тому

      using your echarts btw

    • @andfanilo
      @andfanilo  Рік тому

      @@AdoniasAlbuquerqueEng Oh yeah, that JSON to TOML thing was so random 😅 it really catches you off-guard
      Awesome, looking forward to your app! Are you displaying Firestore data through ECharts??

  • @i.dragons
    @i.dragons 2 роки тому +1

    Funny & Interesting! Great video

    • @andfanilo
      @andfanilo  2 роки тому +1

      Thanks for the support 🙂

  • @rockNbrain
    @rockNbrain 2 роки тому

    Dope!

  • @juanwea223
    @juanwea223 Рік тому

    Hey great video! I am also making an app with Firestore but I get mails from Firestore saying my security rules are bad. Basically, it is a practice app that has no login, it is made so everybody can read data and no one can write. Did you have that problem?

    • @andfanilo
      @andfanilo  Рік тому

      Yeah I did have a lot of those emails. I think it does this to ensure you don't forget you're using development related security rules firebase.google.com/docs/firestore/security/insecure-rules#open_access and pushes you to restrict scopes to authenticated users (which is security-wise a good thing).
      I couldn't deactivate those mails, but if you're aware of this yet don't believe you should restrict the read/write scope further because it's a practice app and you're not dealing with sensitive data, then I believe you can ignore those.

  • @ArminEskandary
    @ArminEskandary 2 роки тому

    hi, bro i really need ur help. can u tell me an HTML or CSS code to hide this?
    Please replace st.beta_columns with st.columns.
    st.beta_columns will be removed after 2021-11-02.
    it's giving me a box of errors saying the shit above when I use st.beta_columns

    • @andfanilo
      @andfanilo  2 роки тому

      Hello, you can replace the st.beta_columns in your code by st.columns, because they moved out of beta 😉

    • @ArminEskandary
      @ArminEskandary 2 роки тому

      @@andfanilo wow yeah bruh it works . thank u so fucking much bro

  • @wgalloPT
    @wgalloPT 2 роки тому

    Hi...i have a question...I have a few apps I would like to include in a website using streamlit and maybe even generate some income if people uses it. Can I just do it, or do I need to pay streamlit for it?

    • @andfanilo
      @andfanilo  2 роки тому +1

      Disclaimer: I'm not a legal person, so this is not "legal" professional advice :)
      That out of the way, Streamlit uses the Apache 2 license, which you can read in full (github.com/streamlit/streamlit/blob/develop/LICENSE). It means you can make commercial use of any Streamlit code you implement - which means yes, you can monetize your websites with Streamlit parts inside. The only thing you cannt do is pursue Streamlit for financial damages if there is a problem in their library that breaks something on your website.
      I've seen other people monetize some Streamlit tools on the forum so definitely possible

    • @wgalloPT
      @wgalloPT 2 роки тому +1

      @@andfanilo I wonder if you are always sitting in front of your computer... :) thank you so much my friend, you are an amazing guy...your videos are funny and you do a great job explaining things...have an awesome day...

  • @louis_korczowski
    @louis_korczowski 2 роки тому

    fantastic ! deserve much more traction :)

    • @andfanilo
      @andfanilo  2 роки тому +1

      Thanks for the support, I'm at the whim of the algorithm now :D

  • @eduardorojas7130
    @eduardorojas7130 2 роки тому

    Really like your content! This was great

    • @andfanilo
      @andfanilo  2 роки тому +1

      I'm glad you liked it, it was an interesting experiment :) now I kind of want to add another Firebase component to see what happens