
π₯ Web Traffic Generator | π WebRocket π
- bebity/web-traffic-generator
- Modified
- Users 186
- Runs 3.7k
- Created by
Bebity
ππ₯ Introducing WebRocket! π₯ Supercharge your website π, deep crawling πΈοΈ, and robust error handling π€. Blast off with start URLs π, choose simultaneous visitors π§π»βπ€βπ§π», and set visit numbers #οΈβ£. Customize the stay duration β, pick device types π±π₯οΈπ, and use residential proxies ππ
To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token. For a more detailed explanation, please read about running Actors via the API in Apify Docs.
from apify_client import ApifyClient
# Initialize the ApifyClient with your API token
client = ApifyClient("<YOUR_API_TOKEN>")
# Prepare the Actor input
run_input = { "startUrls": ["https://bebity.io"] }
# Run the Actor and wait for it to finish
run = client.actor("bebity/web-traffic-generator").call(run_input=run_input)
# Fetch and print Actor results from the run's dataset (if there are any)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)