Metadata-Version: 2.1
Name: blackerz-wrapper
Version: 0.0.2
Summary: Developer kit to interact with our API
Home-page: https://github.com/Fastering18/Blackerz-Wrapper-Python
Author: Fastering18
Author-email: brahmana081@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/Fastering18/Blackerz-SDK-Python/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=2
Description-Content-Type: text/markdown

# Python Blackerz API-Wrapper
Python SDK for interact with our API

__Example Post Bot Description__
```py
import blackerz_api_wrapper as blackerz

blackerz.authorize("V1auth")
goblox = blackerz.bot("bot_id")

bot_data = goblox.bot_data()
print(bot_data)

result = goblox.edit_data(short_description="generated_by_python_lib")
print(result) # boolean indicates success or not

print(goblox.check_vote("775363892167573535")) # check if userid 775363892167573535 voted the bot  
```  

Get your **V1 auth** by login to our website then visit your profile, here the link  
https://blackerz.herokuapp.com/

<br>

Made by Fastering18, join our support server https://discord.gg/t7zJBwynFU for more information.

