Metadata-Version: 2.1
Name: EarthMC
Version: 2.0.0
Summary: Provides data on people, places and more on the EarthMC Minecraft server.
Author: Owen3H
License: MIT
Description-Content-Type: text/markdown

# EarthMC Package
Provides data on people, places and more on the EarthMC Minecraft server.

## Install
```bash
$ pip install EarthMC
```

## Import Map(s)
```py
from EarthMC import Aurora, Nova
```

## Methods
<details>
<summary>Players</summary>
<p>

```py 
ap = Aurora.players
print(ap()) # => Outputs all players. (Townless and Residents)
```

#### All (List)
```py
online = ap.online.all()
townless = ap.townless.all()
residents = ap.residents.all() 
```

#### Get (Object)
```py
op = ap.online.get('PlayerName')
tp = ap.townless.get('PlayerName')
res = ap.residents.get('ResidentName') 
```
</p>
