You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To support both sync and async operations, the SDK would use httpx instead of requests. However, httpx was built to be a viable replacement for requests.
Additional Details
This is a follow up to this slack convo. Happy to provide additional details/examples as needed!
Proposal
Add native asynchronous (async/await) support to the Jamf Pro SDK, enabling use with modern async Python frameworks.
Features:
AsyncJamfProClient,AsyncProApi,AsyncClassicApi,AsyncJCDS2, andAsyncWebhooksClientBackwards compatibility is ensured as we would not be modifying existing synchronous code whatsoever.
Implementation Example
Note
To support both sync and async operations, the SDK would use
httpxinstead ofrequests. However,httpxwas built to be a viable replacement forrequests.Additional Details
This is a follow up to this slack convo. Happy to provide additional details/examples as needed!