Metadata-Version: 2.1
Name: dbots.py
Version: 1.0.1
Summary: API for dbots.online
Home-page: UNKNOWN
Author: BHBL
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# dbots 
useful library for [dbots.online](https://dbots.online)

# API DOCS
Link to api docs: [API DOCS](https://docs.dbots.online)

## Installation
```
pip install dbots
```
## example 
Server Count Post :
```python
from dbots import dbots
from discord.ext import commands

client = commands.Bot(command_prefix="!") 
dbl = dbots(client,"token of dbots")

@client.event
async def on_ready():
  x = await dbl.serverCountPost()
  print(x)

client.run("token")
```

Search bot: 
```python
from dbots import dbots

client = commands.Bot(command_prefix="!") 
dbl = dbots(client,"token of dbots")
id=botid

a = dbl.search(id)
print(a)

```
All functions in api:
```angular2html
1: serverCountPost()
2: search()
3: hasVoted()
```


**JOIN OUR DISCORD SERVER FOR SUPPORT**\
[DISCORD LINK](https://discord.gg/BHyhqk4n)



