Metadata-Version: 2.1
Name: pubg-api
Version: 0.0.2
Summary: PUBG API client
Home-page: https://github.com/imakecodes/pubg
Author: Michel Wilhelm
Author-email: michelwilhelm@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests (>=2.19.1)

# PUBG Api Client

## How to use?

Install the pubg-client package
```
pip install pubg-client
```

## Example snippet
```
import os

from pubg import PubgClient

YOUR_TOKEN = 'your pubg token'

pubg = PubgClient(token=YOUR_TOKEN)


_names = [
    'Cafeteira'
]

players = pubg.players().list_by_names(names=_names)

```

