Metadata-Version: 2.1
Name: EurekaAPI
Version: 0.0.7
Home-page: https://github.com/Eureka-API/EurekaPy
Download-URL: https://github.com/Eureka-API/EurekaPy
Author: Cipher58
Author-email: info@timewiserobot.com
License: Lily 1.0
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Janex

# Eureka-Py

Library for interaction with the Eureka API.

## Installation

``` bash
pip install EurekaPy
```

## Usage

``` python

from EurekaPy import *


# Replace YOUR_API_KEY with your actual API key

Agent = Eureka_Agent("YOUR_API_KEY")

# Send a message to the API

response = Agent.say("Hello, world!")

# Print the response text

print(response)

```
