Metadata-Version: 2.1
Name: asyncpixel
Version: 0.2.0
Summary: An async wrapper for hypixel
Home-page: https://github.com/Obsidion-dev/asyncpixel
License: LGPL-3.0-or-later
Author: Darkflame72
Author-email: leon@bowie-co.nz
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Games/Entertainment
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Dist: aiohttp (>=3.6.2,<4.0.0)
Requires-Dist: importlib_metadata (>=2.0.0,<3.0.0); python_version < "3.8"
Project-URL: Documentation, https://asyncpixel.readthedocs.io
Project-URL: Repository, https://github.com/Obsidion-dev/asyncpixel
Description-Content-Type: text/markdown

# AsyncPixel

## Asynchronous Hypixel API Wrapper

[![Codacy Badge](https://app.codacy.com/project/badge/Grade/8a67753c7c684a5ca8cff399006f22d7)](https://www.codacy.com/gh/Obsidion-dev/asyncpixel?utm_source=github.com&utm_medium=referral&utm_content=Obsidion-dev/asyncpixel&utm_campaign=Badge_Grade)
[![Our Support Server](https://discordapp.com/api/guilds/695008516590534758/widget.png?style=shield)](https://discord.gg/invite/7BRD7s6)
[![Support us on Patreon](https://img.shields.io/badge/Support-us!-yellow.svg)](https://www.patreon.com/obsidion) [![Code Style Black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
[![Tests](https://github.com/Obsidion-dev/asyncpixel/workflows/Tests/badge.svg)](https://github.com/Obsidion-dev/asyncpixel/actions?workflow=Tests)
[![Codecov](https://codecov.io/gh/Obsidion-dev/asyncpixel/branch/master/graph/badge.svg)](https://codecov.io/gh/Obsidion-dev/asyncpixel)
[![PyPI](https://img.shields.io/pypi/v/asyncpixel.svg)](https://pypi.org/project/asyncpixel/)
[![Read the Docs](https://readthedocs.org/projects/asyncpixel/badge/)](https://asyncpixel.readthedocs.io/)

### Overview

This is an asynchronous python wrapper for the [hypixel api](https://api.hypixel.net). It is available for download on [pypi](https://pypi.org/project/asyncpixel/)

### Endpoints

## Examples

### Basic use

```python
import asyncpixel
import asyncio

uuid = "405dcf08b80f4e23b97d943ad93d14fd"


async def main():
    client = asyncpixel.Client("hypixel_api_key")
    print(await client.get_profile("405dcf08b80f4e23b97d943ad93d14fd"))
    await client.close()


asyncio.run(main())
```

