Skip to content

macadmins/jamf-pro-sdk-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Jamf Pro SDK for Python

A client library for the Jamf Pro APIs and webhooks.

from jamf_pro_sdk import JamfProClient, BasicAuthProvider

client = JamfProClient(
    server="dummy.jamfcloud.com",
    credentials=BasicAuthProvider("username", "password")
)

all_computers = client.pro_api.get_computer_inventory_v1()

Read the full documentation on GitHub Pages.

Installing

Install releases from PyPI:

% python -m pip install jamf-pro-sdk

You may also install directly from GitHub if you are testing in-development features and/or changes:

% pip install git+https://github.com/macadmins/jamf-pro-sdk-python.git@<target-ref-or-branch>

The Jamf Pro SDK supports Python 3.9+.

Bugs, Feedback, and Feature Requests

The Jamf Pro SDK for Python is currently in alpha. Not all APIs are available as methods through the clients, and some functionality may change during the alpha based on community feedback.

If you encounter a bug, or undesired behavior, please open a Bug report issue.

If you want to request or propose a change to behavior in the SDK during the alpha please oen a Feedback issue. Feedback issues are in-between a bug report and a feature request. You are describing a current implementation (or lack thereof) and the desired change. Feedback issues are used for vetting contributions with project maintainers and the community before work begins.

If there is a feature or API you would like added (or prioritized) to the SDK please open a Feature request issue. With feature requests include a detailed description and a code example that shows how you envision the feature being used.

For all issue templates be sure to fill out every section!

Contributing

There are many ways to directly contribute to the project. You can enhance the documentation and user guides, or add additional API models and methods. For both there are guidelines for how to proceed.

Visit the Contributors section of the documentation for more details.