Skip to content

supabase/functions-py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

2171d7a · Mar 26, 2025
Jan 30, 2025
Mar 26, 2025
Jan 17, 2025
Oct 23, 2023
Oct 23, 2023
Jan 30, 2025
Mar 26, 2025
Mar 26, 2025
Aug 20, 2024
Jan 17, 2025
Feb 29, 2024
Oct 23, 2023
Mar 22, 2025
Mar 26, 2025
Oct 23, 2023
Aug 15, 2024

Repository files navigation

Functions-py

Installation

pip3 install supabase_functions

Usage

Deploy your function as per documentation.

import asyncio
from supabase_functions import AsyncFunctionsClient
async def run_func():
    fc = AsyncFunctionsClient("https://<project_ref>.functions.supabase.co", {})
    res = await fc.invoke("payment-sheet", {"responseType": "json"})

if __name__ == "__main__":
    asyncio.run(run_func())