Join Nostr
2026-02-25 17:05:39 UTC

Brian :cupofcoffee: :rss: on Nostr: I need to work with some data and struggling to think today. I have a list of ...

I need to work with some data and struggling to think today.

I have a list of assignments in a SQL table. I have a separate table with scores for each assignment (linked to a user account). I need to turn this into a table of users and assignments.

My thought right now is to create a list of assignments and use that to create a collection of OrderedDicts with keys entered in the same order as the assignments list. Then I can iterate into table rows. Or is there a better method?

#python