Notes
The main change in version 0.1.0 is the switch over to relying on the aiohttp.ClientSession instead of the requests library.
Additionally, all models can now be easily created without going through the idiomatic client.profile(...).loop(...).get()
Version 0.1.0 is incompatible with previous 0.0.X versions. All previous APIs have been moved to the blocking namespace. For example, the following import
from dotloop import Authenticate, Clientshould now be
from dotloop.blocking import Authenticate, ClientThe asynchronous API does not currently support the loop-it endpoint.
The asynchronous API will not create the aiohttp.ClientSession but asks that you bring your own.
Documentation will be released highlighting usage of the updated