the same thing is happening to me too

yesterday I managed to make a scrap but today is not happening I think it has to do with the script code
the same thing is happening to me too
Code: Select all
if bool(Runners) == True and ('OR' in grade or 'A' in grade):
Code: Select all
if bool(Runners) == True and ('OR' in grade or 'A' in grade) and len(Runners.items())>1:
spreadbetting wrote: ↑Sun Dec 20, 2020 2:14 pmJust change the line
Code: Select all
if bool(Runners) == True and ('OR' in grade or 'A' in grade):
to
Used to all work fine when it was originally done so maybe the newer versions of python are more picky. Basically where there's only data for one runner the line (x[1][0] - x[0][0]) fails because x[1][0] doesn't exist.Code: Select all
if bool(Runners) == True and ('OR' in grade or 'A' in grade) and len(Runners.items())>1:
That happens when you have dogs who’s last race was a sprint race or they ran over shorter distances to what there running in today.
I think we have to read the beginning of the topic I also wanted to know what the output meansMemphisFlash wrote: ↑Sun Dec 20, 2020 4:35 pmi have a scrape,
can you explain what the output is telling me
Capture.JPG
The output is telling you those dogs from each race are the fastest by x seconds over the nearest rival in the race.murdok wrote: ↑Sun Dec 20, 2020 5:06 pmI think we have to read the beginning of the topic I also wanted to know what the output meansMemphisFlash wrote: ↑Sun Dec 20, 2020 4:35 pmi have a scrape,
can you explain what the output is telling me
Capture.JPG![]()
Archery1969 wrote: ↑Sun Dec 20, 2020 5:23 pmThe output is telling you those dogs from each race are the fastest by x seconds over the nearest rival in the race.murdok wrote: ↑Sun Dec 20, 2020 5:06 pmI think we have to read the beginning of the topic I also wanted to know what the output meansMemphisFlash wrote: ↑Sun Dec 20, 2020 4:35 pmi have a scrape,
can you explain what the output is telling me
Capture.JPG![]()