Rankade.py

Unofficial Python async wrapper for the Rankade API.

Installation

pip

pip3 install rankade.py

Usage

Access the Rankade API

  • Select the group on Rankade you wish to use.

  • From the “Group Manager” screen select “APIs”. Rankade Group Manager Modal

  • This should bring you to the “Credentials and status” page.

  • Copy your key.

  • Generate a secret.

Sample Project

 1import asyncio
 2import rankade
 3
 4async def main():
 5    rankade = rankade.Rankade(key="rankade-key", secret="rankade-secret")
 6    result = rankade.get_games()
 7    print(result)
 8
 9if __name__ == '__main__'
10    asyncio.run(main())

Examples

See Documentation or Examples for more.

Documentation