Metadata-Version: 2.1
Name: pymojang
Version: 1.3.1
Summary: It's a full wrapper arround the          Mojang API and Mojang Authentication API
Home-page: https://github.com/Lucino772/pymojang
Author: Lucino772
Author-email: lucapalmi772@gmail.com
License: MIT
Project-URL: Documentation, https://pymojang.readthedocs.io/en/latest/
Keywords: minecraft,mojang,python3
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
License-File: LICENSE

[![Read the Docs](https://img.shields.io/readthedocs/pymojang?style=flat-square)](https://pymojang.readthedocs.io/en/latest/)
![PyPI - Downloads](https://img.shields.io/pypi/dm/pymojang?style=flat-square)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pymojang?style=flat-square)

# Pymojang
PyMojang is a full wrapper of the [Mojang API](https://wiki.vg/Mojang_API) and [Mojang Authentication API](https://wiki.vg/Authentication).
It also support the [Microsoft Authentication Scheme](https://wiki.vg/Microsoft_Authentication_Scheme).

## Installation

To install the library use the following command:

```bash
pip install pymojang
```

## Usage

Retrieve information about a user

```python
import mojang
profile = mojang.user('Notch')
print(profile.uuid)
# '069a79f444e94726a5befca90e38aaf5'
print(profile.skin.source)
# 'http://textures.minecraft.net/texture/292009a4925b58f02c77dadc3ecef07ea4c7472f64e0fdc32ce5522489362680'
```

Checkout the [documentation](https://pymojang.readthedocs.io/en/latest/)

## Licence
This project uses a
**MIT** Licence [view](https://github.com/Lucino772/pymojang/blob/main/LICENSE)

