dreinon
01/13/2022, 9:51 AMjaf
01/13/2022, 1:10 PMdreinon
01/13/2022, 7:44 PMself.session.request
and set it to whatever integer you want it (default is 5 secs so probability a bit more)dreinon
01/13/2022, 7:47 PMleynier
01/13/2022, 7:58 PMmagpow
01/14/2022, 4:25 PMleynier
01/15/2022, 8:29 AMv0.3.5
) of gotrue-py
with bug fixing was released.
https://github.com/supabase-community/gotrue-py/releases/tag/v0.3.5leynier
01/17/2022, 6:21 AMv0.4.0
) of gotrue-py
has been released with Notion as a new OAuth provider. Thanks to the contributors who implemented the server-side 👏🏼
https://github.com/supabase-community/gotrue-py/releases/tag/v0.4.0leynier
01/17/2022, 2:10 PMv0.3.0
):
- fix: use requests
for upload meanwhile (https://github.com/encode/httpx/discussions/2004)
- deps: upgrade postgrest-py
, gotrue-py
and others dependencies
- **chore**: improve ci-cd
pipeline
- **postgrest-py**(v0.8.0
):
- **feat**: add timeout
as a parameter of clients
- **fix**: incorrect behavior in sanitize_param
method
- **deps**: upgrade dependencies
- **chore**: improve ci-cd
pipeline
- **gotrue-py**(v0.4.0
):
- **feat**: add notion
as a new oauth provider
- **fix**: delete_user
method of api layer
- **deps**: upgrade dependencies
- **chore**: improve ci-cd
pipelineThePhilip
01/26/2022, 2:13 AMBaker XBL
01/26/2022, 4:52 AMon conflict
Phil
01/27/2022, 7:44 AMpy
if response['status_code'] == 201:
# do smth with the data
else:
# throw error
anand
01/28/2022, 1:56 PManand
01/28/2022, 6:06 PMdreinon
02/04/2022, 4:43 PMbrady
02/09/2022, 5:21 AMbrady
02/09/2022, 5:21 AMuser
02/21/2022, 11:52 PMpython
supabase.table('guildsettings').update({"invite_channel_id": channel_id}).eq("guild_id", guild_id).execute()
but the last number of saved int8 is always 0
. I don't see it in open issues, but I want to make sure that I'm doing everything as i shoulduser
02/21/2022, 11:53 PMpocin
02/22/2022, 10:15 AMpocin
02/23/2022, 8:21 AMleynier
03/12/2022, 11:19 PMpostgrest-py
. The objective is to be more strict with respect to the order in that the different methods can be chained like the SQL statements keeping the full type annotation.
I made a pull request with the proposal, please, react on pull request with a 👍 if you like it and with a 👎 if you don't like it.
Greetings.
https://github.com/supabase-community/postgrest-py/pull/102YashDawani
03/16/2022, 2:56 AMleynier
03/16/2022, 3:09 AMGarberchov
03/27/2022, 6:12 PMTypeError: __init__() got an unexpected keyword argument 'headers'
when I try and make the client. supabase = create_client(supabaseUrl, supabaseKey)
If anybody knows why this is happening help would be awesomewillm
04/18/2022, 6:43 AMhttpx.ConnectError: [Errno -2] Name or service not known
Can anyone help me solve this?willm
04/18/2022, 6:44 AMwillm
04/18/2022, 6:44 AMpy
url: str | None = os.getenv("SUPABASE_URL")
key: str | None = os.getenv("SUPABASE_KEY")
print(url, key)
if not url or not key:
raise Exception("Missing SUPABASE_URL or SUPABASE_KEY")
supabase: Client = create_client(url, key)
print(supabase.table("table").select("*").execute())
Studywithdesign
04/18/2022, 9:36 AM