Metadata-Version: 2.1
Name: EarthMC
Version: 2.1.0
Summary: Provides data on people, places and more on the EarthMC Minecraft server.
Home-page: https://github.com/EarthMC-Toolkit/EarthMC-Py
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>

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

#### **All** (List)
```py
online = ap.online.all() # => Outputs list of online players.
townless = ap.townless.all() # => Outputs list of townless players. (Online without a town)
residents = ap.residents.all() # => Outputs list of residents. 
```

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