v1.0
We're happy to publish a stable v1.0 of our Close.io API wrapper! The main highlights of this release are:
- Significantly improved code quality, clarity, and documentation.
- Automatic retrying of rate-limited requests.
- Breaking change: Removal of the asynchronous code. If you relied on our
async=True
flag in the past, you'll have to refactor your application. You can choose to run multiple concurrentapi.get/post/put/delete
requests viathreading
,multiprocessing
,concurrent.futures
,gevent
, etc., depending on your specific use case and environment.