Giter VIP home page Giter VIP logo

apex-legends's Introduction

PyPI version

apex-legends

Python wrapper for https://apex.tracker.gg/ api.

Installation

You can install it via setup.py

python setup.py install

or from pip:

pip install apex-legends

Usage

You need to register for an api key at https://apex.tracker.gg/

Then it's just easy as:

from apex_legends import ApexLegends

apex = ApexLegends("apex_api_key")

player = apex.player('NRG_dizzy')

print(player)

for legend in player.legends:
    print(legend.legend_name)
    print(legend.icon)
    print(legend.damage)

Asynchronous Calls

For those who wish to use this API wrapper for their asynchronous applications, you may do so by calling the AsyncLegends class.

WARNING: This portion of the wrapper is for use with Python version 3.5+. PEP 492 released the keywords async and await, as well as the magic methods __aenter__ and __aexit__, which this portion of the wrapper takes advantage of. This results in the asynchronous class not being compatible with Python versions 3.4 and lower.

import asyncio

from apex_legends import AsyncLegends
from apex_legends.domain import Platform

my_api_key = 'https://apex.tracker.gg api key here'


async def main(api_key, player_name, platform=None):
    async with AsyncLegends(api_key) as apex:
        player = await apex.player(player_name, platform=platform if platform else Platform.PC)
    return player

loop = asyncio.get_event_loop()
result = loop.run_until_complete(main(my_api_key, player_name='NRG_dizzy'))

print(result)

for legend in result.legends:
    print(legend.legend_name)
    print(legend.icon)
    print(getattr(legend, 'damage', 'Damage not found.'))

apex-legends's People

Contributors

xcodinas avatar renovate-bot avatar atomhare avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.