I am unable to find a way to join two firestore tables in python. Does anyone have any information on this?
Firestore doesn't have the concept of server-side joins, no matter what SDK you use.
If you want information from multiple collections, your options are:
Neither of these is pertinently better than the other, but you're roughly trading having data duplication against performing more operations from your app.