aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 9 insertions, 1 deletions
diff --git a/README.md b/README.md
index 9c871c9..5be0410 100644
--- a/README.md
+++ b/README.md
@@ -13,13 +13,21 @@ from discord_ban_list import DiscordBanList
ban_list = DiscordBanList('YOUR_TOKEN')
async def on_something():
- ban_entry = ban_list.check(123456789123456789)
+ ban_entries = ban_list.check(123456789123456789)
+ ban_entry = ban_entries[0]
print(ban_entry.banned)
print(ban.user_id)
print(ban.case_id)
print(ban.reason)
print(ban.proof)
+async def on_something_two():
+ ban_entries = ban_list.check(0, 1, 2, 0)
+ # automatically only check 0, 1 and 2
+ # we also have client side handling for the 99 users limit
+ for entry in ban_entries:
+ print(f'{ban.user_id} - {ban.banned}')
+
```