Metadata-Version: 2.1
Name: vultrexbots.py
Version: 0.0.6
Summary: API wrapper for vultrexbots
Home-page: https://github.com/wezacon/vultrexbots.py
Author: Team Wezacon
Author-email: wezacon.com@gmail.com
License: AGPL
Download-URL: https://github.com/wezacon/vultrexbots.py/tarball/master
Keywords: vultrex,bots-py,wezacon
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: setuptools
Requires-Dist: requests
Requires-Dist: six
Requires-Dist: ujson

# vultrexbots.py
##### **DISCLAIMER!** This is an unofficial package!

Install:
``
pip install vultrexbots.py
``

```py
import vultrexbots

vbk = "apikey"

cli = vultrexbots.Client(botId=642728778535141376, apiKey=vbk)

out = cli.get_bot_info()

reviews = cli.get_bot_reviews()

print(reviews.review) # change review to any needed info

# cli.post_bot_count(serverCount=42, shardCount=0)

print(out.github) # replace github with any other params
```

