Metadata-Version: 2.1
Name: mcoauth
Version: 0.0.4
Summary: A small package to use MCOauth
Home-page: https://github.com/MySixSenses/MCOauth
Author: TheUltimateGuide
Author-email: theultimateguideofficial@gmail.com
License: UNKNOWN
Platform: UNKNOWN
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: aiohttp

# MCOauth
This is a simple package to use MCOauth. Initialize a Minecraft Player
``` 
MinecraftPlayer(token)
```
Most things are async except for initializing MinecraftPlayer which is not a blocking call because it uses
```
asyncio.run
```
A MinecraftPlayer has two properties, uuid and username.
Using
```
int(MinecraftPlayer(token))
```
will return token.
Note that tokens are only valid for 5 minutes, see https://mc-oauth.net/

