McAfee ePolicy Orchestrator API
Project description
A straightforward wrapper around the ePO API. Manages authentication, building requests, and interpreting responses. Simply treat the client object as a callable function, passing the command name and parameters.
Install:
$ pip install mcafee-epo
Use:
>>> from mcafee_epo import Client >>> client = Client('https://localhost:8443', 'user', 'password') >>> systems = client('system.find', '')
Differences from “official” client
This library was created in response to the fairly poor client distributed by McAfee, which didn’t support Python 3 and was generally a mess. (You can find a cleaned up version of their client with Python 3 support in the first few commits.)
The official library required copying files into the Python location to “install” it. This library is an actual package installed using pip.
The official client uses low level url libraries and numerous workarounds to make http requests. This library uses the requests library to greatly simplify the work the previous code was doing.
The official client used a dynamic command discovery and dispatch mechanism to make api calls seem like a nested set of objects. This library forgoes that complexity (which wasn’t understood by IDEs anyway) for a more straightforward approach that just accepts command names when calling.
Links
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file mcafee-epo-1.0.2.tar.gz
.
File metadata
- Download URL: mcafee-epo-1.0.2.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e18c217293843cc59040a2a92d0065727bca2599ef41c74a8072e9a7314524c9 |
|
MD5 | 130d3c1c59fce83e5322395115147686 |
|
BLAKE2b-256 | 5a589ed6591be2faced8a3c9bcbb727c5b759ad2eb13d9fdbe02f3d30832ce66 |