Welcome to today’s daily kōrero!

Anyone can make the thread, first in first served. If you are here on a day and there’s no daily thread, feel free to create it!

Anyway, it’s just a chance to talk about your day, what you have planned, what you have done, etc.

So, how’s it going?

  • NoRamyunForYou@lemmy.nz
    link
    fedilink
    arrow-up
    1
    ·
    10 months ago

    I’ve had a brief look into duckdb, and not too sure if I’m interpreting it’s use case correctly, but does it basically allow you to use SQL within your Python to query your large datasets that you have locally?

    • catsdoingcatstuff@lemmy.nz
      link
      fedilink
      arrow-up
      2
      ·
      10 months ago

      That’s right. You can read in structured files and query them locally without having to load into a database. It’s nice in the case where you would rather write analytics sql, or want to convert between sql and pandas. It’s very quick to load and run files. It can connect to databases, too.