ir_webstats icon indicating copy to clipboard operation
ir_webstats copied to clipboard

iRacing python client interface to access drivers and series stats and results.

Results 4 ir_webstats issues
Sort by recently updated
recently updated
newest added

These two methods work with these small fixes.

Closes #4 and also allows Fuzzwah/race-info to simply submodule this repo via https://github.com/Fuzzwah/race-info/pull/1

After logging in, I try to get event results with ``` irw.event_results(16206499) ``` This is the error I get: ``` TypeError Traceback (most recent call last) in () ----> 1...

I'm attempting to limit the number of event results returned to just the last couple of days: ``` r = irw.results_archive(event_types=(ct.EVENT_RACE,), date_range=('2014-07-16','2014-07-18')) print(r[1]) ``` That prints out 76, which is...