An open API service indexing awesome lists of open source software.

https://github.com/supabase/functions-py


https://github.com/supabase/functions-py

hacktoberfest hacktoberfest2022

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Functions-py

## Installation

`pip3 install supabase_functions`

## Usage

Deploy your function as per documentation.

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

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