Question: Is it better to open 1,000 URLs in 1,000 instances?

Johnathan

Новичок
Регистрация
24.12.2021
Сообщения
10
Благодарностей
1
Баллы
3
Hi there.


I was wondering how I'm able to open a URL, every 15 seconds on 1,000 instances?

So I have 1,000 URLs. The function that I have takes 15 seconds. I do not want the bot to run all functions on 1,000 URLs simultaneously, in case it flags something.

I want the bot to run the function on the 1st URL, then 15 seconds later, it will open the next URL all the way to the end of my list. Possibly some loop?

That's my first question.

Secondly, how am I able to make the instance open without closing?
 

Phoenix78

Client
Read only
Регистрация
06.11.2018
Сообщения
11 790
Благодарностей
5 694
Баллы
113

Johnathan

Новичок
Регистрация
24.12.2021
Сообщения
10
Благодарностей
1
Баллы
3
it will be very problematic to raise more than 200-250 threads. approximately 0.8 gigabytes of memory is needed for each instance
Thank you for your reply. So I suppose it would be better to have the 1,000 URLs in one instance.

The reason I'm doing this is so I can ensure that the function is working properly on all the 1,000 URLs (I check them after it's completed).

Is there any code/script which tells the bot to go to the next tab:
87108
 

nicanil

Client
Регистрация
06.03.2016
Сообщения
2 242
Благодарностей
1 807
Баллы
113
It is not recommended to loop projects.
  • Save all the URLs to a file.
  • Bind the file to a List.
  • Take lines from the List with deletion.
  • Navigate to the URL
Add this project to ZennoPoster. Add as many "Attempts count" as you have lines in the file. So one project execution will process one URL.
87111
 

Johnathan

Новичок
Регистрация
24.12.2021
Сообщения
10
Благодарностей
1
Баллы
3
It is not recommended to loop projects.
  • Save all the URLs to a file.
  • Bind the file to a List.
  • Take lines from the List with deletion.
  • Navigate to the URL
Add this project to ZennoPoster. Add as many "Attempts count" as you have lines in the file. So one project execution will process one URL.
Thank you.

I have that setup right now actually; but, my issue is that I'm not able to see the bot work on the website after it's completed 1,000 URLs.

After the bot has completed 1,000 URLs, I would like to go back through the 1,000 tabs and see if every website has said "Completed".
 

nicanil

Client
Регистрация
06.03.2016
Сообщения
2 242
Благодарностей
1 807
Баллы
113
You can navigate to the URL, do all you need to do, wait for the "Completed" message, and then process next URL.
 

jfrivera

Client
Регистрация
28.12.2021
Сообщения
7
Благодарностей
0
Баллы
1
Is there any good tutorial for begginer as I do not know how to make the input example I want to input email address from my excel sheet
 

nicanil

Client
Регистрация
06.03.2016
Сообщения
2 242
Благодарностей
1 807
Баллы
113

jfrivera

Client
Регистрация
28.12.2021
Сообщения
7
Благодарностей
0
Баллы
1

Кто просматривает тему: (Всего: 1, Пользователи: 0, Гости: 1)