Python wrapper for Escape from Tarkov API provided by https://tarkov-market.com
Python 3.6 or higher is required
To install the library, you can just run the following command:
# Linux/macOS
python3 -m pip install -U pytarkov
# Windows
py -3 -m pip install -U pytarkovYou can get your API key from here.
import pytarkov
client = pytarkov.PyTarkov("api-key-here")
item = client.get_item_by_name("bitcoin")
print(f"{item.name} price: {item.price}")