I am working on a program and need ot know how I would read a specific entry to the Windows Event Log based on a Record number, which this script will already have. Below is
There is a python library now (python 3 and up) that will do what you're asking called winevt. What you're looking for could be done via the following:
from winevt import EventLog
query = EventLog.Query("System","Event/System[EventID=27035]")
event = next(query)