Skip to main content

Posts

Showing posts from June, 2025

Update and Delete in Supabase By Python File

 Hi!! I'm Ogata! Today, I show you Update and Delete code by Python. Show you a code here. Here is a code update code. You don't need to insert it to response variable. The eq means that you choose the table from table's id of name: Ichiro Sato, which means select of SQL. That's it. Plus, you might awake it, Delete program is changing update to delete. Run the code, it is... Here !! You got it. This is it. Thanks for reading!!

Linking to Supabase by Python File

Do you want to link your data to Supabase DB by Python? How can I do that? Let's start Supabase project. At first, you import supabase. pip install supabase This is needed to use Supabase DB. You create tha py file of here. This is a fundamental format of Supabase project data matching to DB, I mean, creating the data of table. For the next, Supabase project starting up is needed. Then, Choosing a Table Editor, and click to New table. You insert the adoptable name in the table name(This is the name of Supa_table, but You name it as users for example). Just in a text format, and you freely add the column. Then, you need to run the last Python file. Furthermore, you click the button of "Refresh". Oh!! You Got It ! You can added the table to Supabase. The point is json connecting to Supabase. Today, we can link the database data of json to Supabase. So, the next day, we can delete the table or update it. Thanks for Reading!