From afc3b93e3ea541f39ca4d719b28e5828cdb810a3 Mon Sep 17 00:00:00 2001 From: Damir <160710174+Damir-x2@users.noreply.github.com> Date: Tue, 17 Feb 2026 09:59:04 +0700 Subject: [PATCH] example fix Changing the get_all_users_v2 method in the example to the current get_all_users method --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5993d35..bdd135c 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,7 @@ async def main(): remnawave = RemnawaveSDK(base_url=base_url, token=token) # Fetch all users - response: UsersResponseDto = await remnawave.users.get_all_users_v2() + response: UsersResponseDto = await remnawave.users.get_all_users() total_users: int = response.total users: list[UserResponseDto] = response.users print("Total users: ", total_users) @@ -121,4 +121,4 @@ This SDK was originally developed by [@kesevone](https://github.com/kesevone) fo Previously maintained by [@sm1ky](https://github.com/sm1ky) at [`sm1ky/remnawave-api`](https://github.com/sm1ky/remnawave-api). -Now officially maintained by the Remnawave Community at [`remnawave/python-sdk`](https://github.com/remnawave/python-sdk). \ No newline at end of file +Now officially maintained by the Remnawave Community at [`remnawave/python-sdk`](https://github.com/remnawave/python-sdk).