-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8153ce7
commit 681cc55
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
""" | ||
Searches for groups which have a keyword in their name. | ||
""" | ||
|
||
import asyncio | ||
from roblox import Client | ||
client = Client() | ||
|
||
async def main(): | ||
users = client.groups_search("Roblox", max_items=10) | ||
|
||
async for user in users: | ||
print("ID:", group.id) | ||
print("\tName:", group.name) | ||
|
||
asyncio.get_event_loop().run_until_complete(main()) |