I have an XML file that looks like this:
<StationConfig
StationId="1"
SportType="null"
StationType="null"
UseMetricSystem="US"
LocalTempStorageDrive="C:\"
LocalStorageDrive="C:\">
<ClubManagementEnable ClubManagementStaticHours="">false</ClubManagementEnable>
</StationConfig>
I'm trying to change the value of StationID through python and can't find a way. I've tried using Etree but cant figure out how to access the value in StationID and change it.
Sorry for the noob question, any help would be appreciated