A bot that makes exchanges on Eobot API.
❗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
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
Start application:
(env)$ python eobot_exchange.py