block game bot api Wrapper
Written without any external libraries other than aiohttp which is used to fetch data from the block game bot API.
This requires a block game bot API key. You may obtain one by joining this Discord and messaging me (asov#0187).
import asyncio
from blockgamebot.api import Scammers
scammers = Scammers("BLOCKGAMEBOT_API_KEY")
async def main():
# Get all scammers
all_scammers = await scammers.get_all()
print(all_scammers)
# Lookup a scammer
scammer = await scammers.lookup("asov")
print(scammer)
asyncio.run(main())If you don't want to use the Wrapper you can use the API.