doc/readme: announce the deprecation
conftest: reuse tshistory testutil helpers
remove supervision and formula support
This library is deprecated and its content was folder into tshistory itself, starting with version 0.14.0
This library provides easy access to tshistory instances exposed with the help of tshistory_rest (http end points).
All the base tshistory
api is available from there.
from tshistory_client.api import Client
c = Client('http://my.tshistory.instance/api')
series = c.get('banana_spot_price')
from tshistory.api import timeseries
c = timeseries('https://my.tshistory.instance/api')
series = c.get('banana_spot_price')