# 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 %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://pyauthgg.xfuey.dev/getting-started.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
