
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Python wrapper for https://apex.tracker.gg/ api.
You can install it via setup.py
python setup.py install
or from pip:
pip install apex-legends
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)
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.'))
FAQs
Python wrapper for https://apex.tracker.gg/ api.
We found that apex-legends demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.