I have another problem with this parser
i have created resource where all urls will be added (like in tutorial) In logs it seems that the script is working .. its showing that it is scraping all urls on page In resource i have only 1 url.. the first one.. why it added only the first url and not the rest?noreuse alternative for resources?
-
So if i wanna loop my resource loaded from file i do Resource to List to be able for FOR or FOREACH but issue is that can't use noreuse in this action, what i can do in alternative to make it work? In result i wanna use every new line from my resource file in every new thread and don't reuse same lines

-
@gudolik said in noreuse alternative for resources?:
So if i wanna loop my resource loaded from file i do Resource to List to be able for FOR or FOREACH but issue is that can't use noreuse in this action, what i can do in alternative to make it work? In result i wanna use every new line from my resource file in every new thread and don't reuse same lines
You yourself have described two options for the approach to using resources: Either use the "Resource to List" action, or use the "noreuse" option in the loop.
-
@Fox said in noreuse alternative for resources?:
noreuse
noreuse not working in "Resource to List"
and i don't think you understand what i want, let say in resource we load list like
google.com yahoo.com bing.comthen thread 1 must et google.com thread 2 must get yahoo.com, not same site on every thread and also don't delete them from file
-
@gudolik said in noreuse alternative for resources?:
@Fox said in noreuse alternative for resources?:
noreuse
noreuse not working in "Resource to List"
and i don't think you understand what i want, let say in resource we load list like
google.com yahoo.com bing.comthen thread 1 must et google.com thread 2 must get yahoo.com, not same site on every thread and also don't delete them from file
I think it's you who don't understand how resources work. Add the resource "LisnesFromFile", with the option "Only read" and the option "Use each line one time"
-
@Fox said in noreuse alternative for resources?:
@gudolik said in noreuse alternative for resources?:
@Fox said in noreuse alternative for resources?:
noreuse
noreuse not working in "Resource to List"
and i don't think you understand what i want, let say in resource we load list like
google.com yahoo.com bing.comthen thread 1 must et google.com thread 2 must get yahoo.com, not same site on every thread and also don't delete them from file
I think it's you who don't understand how resources work. Add the resource "LisnesFromFile", with the option "Only read" and the option "Use each line one time"
Its already set like that... So if you saying that is the right way so then is BAS issue?
-
@gudolik said in noreuse alternative for resources?:
@Fox said in noreuse alternative for resources?:
@gudolik said in noreuse alternative for resources?:
@Fox said in noreuse alternative for resources?:
noreuse
noreuse not working in "Resource to List"
and i don't think you understand what i want, let say in resource we load list like
google.com yahoo.com bing.comthen thread 1 must et google.com thread 2 must get yahoo.com, not same site on every thread and also don't delete them from file
I think it's you who don't understand how resources work. Add the resource "LisnesFromFile", with the option "Only read" and the option "Use each line one time"
Its already set like that... So if you saying that is the right way so then is BAS issue?
You don't need to use the "Resource to List" action
-
@Fox said in noreuse alternative for resources?:
@gudolik said in noreuse alternative for resources?:
@Fox said in noreuse alternative for resources?:
@gudolik said in noreuse alternative for resources?:
@Fox said in noreuse alternative for resources?:
noreuse
noreuse not working in "Resource to List"
and i don't think you understand what i want, let say in resource we load list like
google.com yahoo.com bing.comthen thread 1 must et google.com thread 2 must get yahoo.com, not same site on every thread and also don't delete them from file
I think it's you who don't understand how resources work. Add the resource "LisnesFromFile", with the option "Only read" and the option "Use each line one time"
Its already set like that... So if you saying that is the right way so then is BAS issue?
You don't need to use the "Resource to List" action
Oh thats was the issue, now i fix it thanks!