chopicalqui/TurboDataMiner

Detect the end of the process

theblackturtle opened this issue · 1 comments

Hi, Are there any variables to detect the end of the process? Like at the beginning of the process, the ref == 1 used to detect that is the first request.

Thanks.

@theblackturtle Yes there is. You can use variable row_count for this. Refer to Turbo Data Miner's About tab for more information. Below you will find a short script, which illustrates how you could use row_count:

if ref == 1:
	header = ["Ref.", "URL"]
if ref == row_count:
	rows = [[ref, str(url)]]

This script only adds the last request/response item to the table.