Metadata-Version: 2.1
Name: smapi
Version: 0.1.3
Summary: Fetching and parsing info from Steam Community Market and CSGO Float Apis
Home-page: https://github.com/Mefgner/SteamMarketAPI
Author: Mefgner
Author-email: mefgner@gmail.com
License: MIT
Keywords: smapi,steam,community,market,csgo,cs:go,listings,float,api
Platform: UNKNOWN
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# SteamMarketAPI
> **SteamMarketAPi** is api that provides you to use the Steam Community Market for CS:GO game simplify, through the fetching and parsing lots info from Steam Community Market and CSGO Float APIs

## Common Features
- Simple to use
- Asynchronous
- Fast

### Alert
> If you want to use this api heavily you should to host CSGO Float API yourself
- [CSGO Float Api GitHub](https://github.com/csgofloat/inspect)

## Code Sample
> For more samples look to [examples](https://github.com/Mefgner/SteamMarketAPI/blob/main/example.py)
``` python
from smapi import SteamMarketHandler

smapi_object = SteamMarketHandler(
    'AK-47 | Vulcan (Field-Tested)',
    quantity=30
)

for lot in smapi_object.get_as_dataclass:
    print(lot)
```


### Installing
``` bash
pip3 install smapi
```


