Metadata-Version: 2.1
Name: bitskins
Version: 1.0.0
Summary: Simple BitSkins API Wrapper
Home-page: https://github.com/Spacerulerwill/bitskins.py
Author: William Redding
Author-email: williamdredding@gmail.com
License: zlib/libpng
Keywords: api
Classifier: Development Status :: 5 - Production/Stable
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: zlib/libpng License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# bitskins.py
A basic WIP API wrapper for the BitSkins website in Python, mapping the API Commands to corresponding functions.

Features support for all BitSkins supported games:
* PUBG
* PAYDAY2,
* KILLING FLOOR 2
* RUST
* DEPTH 
* UNTURNED
* CSGO
* DOTA2
* TF2

Example Usage:
```python
from bitskins import BitSkins, RUST

wrapper = BitSkins("api key here", "secret here")

print(wrapper.getAccountInventory(game=RUST, page=10)
```
