I started working on this open source python library called Reduino it basically simplifies your workflow and transpiles the python code to an arduino c++.
Get Started with
pip install Reduino
Here is what a Led Blink example looks like in Reduino
from Reduino import target
from Reduino.Actuators import Led
from Reduino.Utils import sleep
target("COM4")
led = Led(7)
while True:
led.toggle()
sleep(3000)