Versions

Description

coc.py ====== Easy to use asynchronous Clash of Clans API wrapper in Python. Key Features ------------- - Asynchronous code - Entire coverage of the official Clash of Clans API - Auto updating tokens for use with dynamic IPs Getting Started ================ Installing ----------- **Python 3.5 or higher is required** .. code:: sh # Linux/OS X python3 -m pip install -U coc.py # Windows py -3 -m pip install -U coc.py Quick Example -------------- .. code:: py import coc import asyncio client = coc.Client('token') async def player_name(tag): player = await client.get_player(tag) print(player.name) # alternatively, print(str(player)) async def get_five_players(name): players = await client.search_players(name=name, limit=5) for n in players: print(n, n.tag) if __name__ == '__main__': loop = asyncio.get_event_loop() loop.run_until_complete(get_some_player('tag')) loop.run_until_complete(get_five_players('name') For more examples see the examples directory Links ------ - `Official Clash of Clans API Page <https://developer.clashofclans.com/>`_

Repository

https://github.com/mathsman5133/coc.py.git

Project Slug

cocpy

Last Built

5 days, 5 hours ago passed

Maintainers

Home Page

https://github.com/mathsman5133/coc.py

Badge

Tags

api, clash-of-clans, coc, cocpy

Short URLs

cocpy.readthedocs.io
cocpy.rtfd.io

Default Version

latest

'latest' Version

master