Metadata-Version: 2.1
Name: Miscblox
Version: 1.0.0
Summary: An API wrapper for the Roblox that supports endpoints that other API wrappers don't.
Author: mark.api
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
Requires-Dist: httpx
Requires-Dist: asyncio

# ERLC Client Example


## Setting Up
### Initialize the ERLC Client


```python
import asyncio
import logging
from ERLC.erlc import client

erlc_client = client()
```

### Connect to the ERLC Client

```python
server_key = 'your_server_key'
global_key = 'your_global_key'

await erlc_client.config(server_key, global_key)

if erlc_client.connected:
    print("Connected to ERLC!")
else:
    print("Failed to connect to ERLC.")
```

## Example Usage

```python
server_key = 'your_server_key'
global_key = 'your_global_key'

await erlc_client.config(server_key, global_key)

if erlc_client.connected:
    print("Connected to ERLC!")
else:
    print("Failed to connect to ERLC.")

bans = await erlc_client.server.bans()
print(bans)


