Skip to content

Version 0.1.0

Latest

Choose a tag to compare

@benrussell80 benrussell80 released this 03 Mar 23:25

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, Client

should now be

from dotloop.blocking import Authenticate, Client

The 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