We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecfca17 commit 55368eaCopy full SHA for 55368ea
README.rst
@@ -46,10 +46,14 @@ Quick Example
46
for n in players:
47
print(n, n.tag)
48
49
+ async def main():
50
+ await get_some_player('tag')
51
+ await get_five_clans('name')
52
+ await client.close()
53
+
54
if __name__ == '__main__':
55
loop = asyncio.get_event_loop()
- loop.run_until_complete(get_some_player('tag'))
- loop.run_until_complete(get_five_clans('name'))
56
+ loop.run_until_complete(main())
57
58
For more examples see the examples directory
59
0 commit comments