This library allows you to quickly and easily use the Optimove Web API v3 via Python
python setup.py install
from optimove.client import Client
client = Client('username', 'password')
Or
from optimove.client import Client
client = Client()
client.general.login('username', 'password')
Tests are available in tests/
folder, before to run them, you should
install responses. This
package is used to bind the HTTP call to Optimove API.
The fixture used for the tests are from the documentation provided by Optimove
python setup.py test