> For the complete documentation index, see [llms.txt](https://pyauthgg.xfuey.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pyauthgg.xfuey.dev/getting-started.md).

# Getting Started

## 1. Installation

You can install [PyAuthGG](https://github.com/xFueY/PyAuthGG) from [PyPI](https://pypi.org/project/PyAuthGG/) using the Python Package Manager PIP.

```
$ pip install PyAuthGG
```

## 2. Importing

{% code title="MyApplication.py" %}

```python
import PyAuthGG
print(PyAuthGG.Version)
```

{% endcode %}

{% hint style="info" %}
You can use PyAuthGG.Version to make sure that you are always using the newest version.
{% endhint %}

## 3. Example

{% code title="MyApplication.py" %}

```python
import PyAuthGG

Admin = PyAuthGG.Administration("API KEY")
print(Admin.FetchUser("xFueY"))
```

{% endcode %}

{% hint style="info" %}
You can get your API key in the application settings on [Auth.GG](https://auth.gg/dashboard/).
{% endhint %}
