[![PyPI version](https://badge.fury.io/py/apex-legends.svg)](https://badge.fury.io/py/apex-legends)
# 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](https://www.python.org/dev/peps/pep-0492/) 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.
```py
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.'))
```
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
资源分类:Python库 所属语言:Python 资源全名:apex-legends-0.1.4.tar.gz 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059
资源推荐
资源详情
资源评论
收起资源包目录
apex-legends-0.1.4.tar.gz (13个子文件)
apex-legends-0.1.4
PKG-INFO 3KB
apex_legends
domain.py 2KB
__init__.py 99B
base.py 3KB
exceptions.py 546B
setup.cfg 38B
apex_legends.egg-info
PKG-INFO 3KB
requires.txt 98B
SOURCES.txt 293B
top_level.txt 13B
dependency_links.txt 1B
setup.py 1KB
README.md 2KB
共 13 条
- 1
资源评论
- jinchelove2022-05-06用户下载后在一定时间内未进行评价,系统默认好评。
挣扎的蓝藻
- 粉丝: 14w+
- 资源: 15万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功