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

# Getting Started

## Download Exbot:

You can either [download](https://github.com/obrassard/Exbot/releases) the `.jar` library or the source code from [this repo](https://github.com/obrassard/exbot).

Note that you'll need to `import` the library `com.obrassard.Exbot` if you chose to download the JAR file.

## Create an Exbot object:

Get started by creating a `new` Exbot instance with a

```java
Exbot bot = new Exbot();
```

Notice that Java Robot class must handle `AWTException`. For that, you need to `try/catch` or `throw` the exception:

```java
public static void main(String[] args) {

        try {
            Exbot bot = new Exbot();

        } catch (java.awt.AWTException e) {
            e.printStackTrace();
        }
    }
```
