Python 3 implementation of iRacing SDK


License
MIT
Install
pip install pyirsdk==1.3.5

Documentation

Python iRacing SDK

Python 3 implementation of iRacing SDK can:

  • Get session data (WeekendInfo, SessionInfo, etc...)
  • Get live telemetry data (Speed, FuelLevel, etc...)
  • Broadcast messages (camera, replay, chat, pit and telemetry commands)

Install

  • Python 3.7+
  • PyYaml 5.3+
  • add X:\Python37\Scripts directory to your PATH environment variable
  • pip install pyirsdk

Usage

#!python3
import irsdk
ir = irsdk.IRSDK()
ir.startup()
print(ir['Speed'])

Go to tutorials for more.