Metadata-Version: 2.1
Name: simc_support
Version: 9.2.0.13
Summary: Data to support simulations for World of Warcraft with SimulationCraft.
Home-page: https://github.com/Bloodmallet/simc_support
Author: Bloodmallet(EU)
Author-email: bloodmalleteu@gmail.com
License: GNU GENERAL PUBLIC LICENSE
Project-URL: Bug Tracker, https://github.com/Bloodmallet/simc_support/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# simc_support [![CI](https://github.com/Bloodmallet/simc_support/workflows/CI/badge.svg)](https://github.com/Bloodmallet/simc_support/actions?query=workflow%3A%22CI%22)

Data to support simulations for World of Warcraft with SimulationCraft for each current expansion. First three versioning numbers match World of Warcrafts' build version.

## Installation

```sh
pip install simc-support
```

## Usage

Get a list of all trinkets
```python
from simc_support.game_data.Trinket import TRINKETS

for trinket in TRINKETS:
    print(f"{trinket.item_id} {trinket.name}")
```

Get a list of all trinkets available to a specific spec
```python
from simc_support.game_data.WowSpec import get_wow_spec
from simc_support.game_data.Trinket import get_trinkets_for_spec

elemental_shaman = get_wow_spec("shaman", "elemental")
trinkets = get_trinkets_for_spec(elemental_shaman)

for trinket in TRINKETS:
    print(f"{trinket.item_id} {trinket.name}")
```


