Raspberry Pi needs to control Extruder and Nozzle Temp over Klipper

Hey,

I have a Raspberry Pi 3 that gets XML strings over ethernet with Values like, Speed=100 or Temp=210.
I want to send these values to Klipper with a Python script or module so klipper will than set the temp to 210 as example.

How am i gonna do that?

I think you’d likely want to read up on the Klipper API
https://www.klipper3d.org/API_Server.html

Then your Python could convert the XML into JSON to send to Klipper.
Having your Python called to process the XML strings, and formatting into JSON aren’t really topics for the Klipper discourse though.