> For the complete documentation index, see [llms.txt](https://brucecodes.gitbook.io/utility-api-python/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://brucecodes.gitbook.io/utility-api-python/master.md).

# Downloading and Setup

## Importing

Right now, it is just a file which you can download and use. Download it [here](https://cdn.discordapp.com/attachments/875973025424621598/881167422097338418/main.py). Add it to your folder, name it whatever you would like (not necessary), then import it like this

```python
import main as up
```

{% hint style="info" %}
&#x20;You can rename `up` to whatever you want. `main` must have the same name as the file you downloaded. Remember - its main, not main.py.

If you stored the file in a folder, import it like this

`import folder.filename as nickname`
{% endhint %}

Here's how you use the features:

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

```python
import main as up

print(up.method())
```

{% endcode %}
