Skip to content

Instantly share code, notes, and snippets.

View SoarinSen's full-sized avatar

Brian S SoarinSen

View GitHub Profile
@SoarinSen
SoarinSen / isetools.py
Last active July 17, 2018 23:46
Python functions to support creating or modifying an endpoint in Cisco Identify Services Engine (ISE) with an iPSK.
import requests, settings, smtplib, logging
import xml.etree.ElementTree as ElemTree
from bs4 import BeautifulSoup
class ISEAPIError(Exception):
"""
An error with the ISE API call being made.
"""
pass