Skip to content

Latest commit

 

History

History
28 lines (28 loc) · 1.08 KB

README.md

File metadata and controls

28 lines (28 loc) · 1.08 KB

Eobot Exchange Pybot

A bot that makes exchanges on Eobot API.

INSTALLATION

Application, virtual environment, requirements

❗maybe you have to install virtualenv Clone the folder, go inside, create a virtual environment for Python with virtualenv and activate it:

$ git clone https://github.com/JBthePenguin/EobotExchangePybot.git
$ cd EobotExchangePybot
$ virtualenv -p python3 env
$ source env/bin/activate

Install all necessary dependencies (eobot-py):

(env)$ pip install -r requirements.txt

Settings

Create a file config/real_config.py, write your eobot user id, the email that register on eobot and the API Key (you can found it in your profile page on eobot website) like in config/config_example:

USER_ID = 1234567  # Your eobot user id
EMAIL = "[email protected]"  # Your email
PASSWORD = "aa11aa11aa11aa11aa11"  # Your API Key

USING

Start application:

(env)$ python eobot_exchange.py