Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mazurwiktor/aoaddons-python
https://github.com/mazurwiktor/aoaddons-python
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mazurwiktor/aoaddons-python
- Owner: mazurwiktor
- Created: 2020-08-01T08:18:07.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-09-03T21:08:20.000Z (4 months ago)
- Last Synced: 2024-10-14T04:35:50.725Z (2 months ago)
- Language: Python
- Size: 148 KB
- Stars: 10
- Watchers: 2
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
pyaoaddons
==========**Powered by Albion Online Addons**
# API reference
## subscribe
Args: Callable[dict]
Registers callback which is going to be called on each game event
## initialize
Initialize logging and packet sniffing.
After invocation library starts to listen to game packets.
> **Note**: logs are placed in `aoaddons.log` file
Returns `InitializationResult`
## item_category_mapping
Dictionary containing human readable category names for coded items.
E.g
```python
{
"T6_POTION_HEAL": "potion"
}
```## localization_mapping
Dictionary containing human readable names for coded items.
E.g
```python
{
"T8_ARTEFACT_2H_CURSEDSTAFF_MORGANA": "Elder's Bloodforged Catalyst"
}
```## Available game events are visible [here](https://docs.rs/aoaddons/0.1.6/aoaddons/photon_messages/messages/index.html)
Latest messages decoding recipe can be found [here](https://github.com/mazurwiktor/albion-online-addons/blob/master/assets/messages.json)