auraxium
auraxium copied to clipboard
A high-level Python wrapper for the PlanetSide 2 API.
Hello, For the character collection, is there a reason `Client.get_by_name` is using a query with `case(False)` on `name.first` instead of a simple query on `name.first_lower`: https://github.com/leonhard-s/auraxium/blob/145470755c2136366ba6cfe7a9003eda3772ab6a/auraxium/_client.py#L197 While the docstring for...
Not really relevant for real use, but might be impactful for new users as it's a basic example from the README ### Reproduction steps: **Config**: Python 3.10.4, auraxium 0.2.2, windows...
## Bug Exception raised when trying to retrieve a character's items ### Current Behavior: Exception when awaiting a character's items ### Expected Behavior: The function should return the requested character's...
The trigger system gives us some redundancy to define custom events aside from the ones defined on Daybreak's side. One useful custom event for outfit bots would be to detect...
Members of the PS2 API developer community have created fallback endpoints to provide more accurate/reliable data in case the API itself falls behind game updates or has other issues. With...
When working with websocket data, it is common to have a barrage of similar responses sent to the REST API all the time, like when resolving experience IDs or character...
Additional stats and metrics to provide to the user to allow them to judge the health of their application. This has no set date or priority yet, just collecting ideas...
The current placeholder proxy objects work, but do not supported nested operations. It'd be very neat if they did. Example for such a currently unsupported interface: ```py outfit = await...
(note: this issue is referring to the documentation at [https://auraxium.readthedocs.io/en/latest/api/payloads.html#events](https://auraxium.readthedocs.io/en/latest/api/payloads.html#events), not the github or code documentation) Some GainExperience events do not look quite how you might expect. For example, grenade...
Relational tables like `characters_item` are currently exposed via a provisional interface that effectively wraps a `census.Query` object with an anonymous `**kwargs` annotation. This makes them difficult to use, while still...